From 6047469f71aae2b7eb2116c9a7d82119ffd80313 Mon Sep 17 00:00:00 2001 From: Antonin Delpeuch Date: Tue, 7 Oct 2025 08:10:12 +0200 Subject: [PATCH] Unvendor tree-sitter-gleam For #891. --- CHANGELOG.md | 2 +- Cargo.lock | 11 + Cargo.toml | 1 + build.rs | 5 - src/parse/tree_sitter_parser.rs | 11 +- vendored_parsers/highlights/gleam.scm | 1 - .../tree-sitter-gleam/.gitattributes | 3 - .../.github/ISSUE_TEMPLATE/config.yml | 1 - .../.github/ISSUE_TEMPLATE/issue.md | 12 - .../.github/workflows/ci.yml | 67 - .../.github/workflows/generate-parser.yml | 41 - .../.github/workflows/release.yml | 56 - vendored_parsers/tree-sitter-gleam/.gitignore | 6 - vendored_parsers/tree-sitter-gleam/Cargo.lock | 89 - vendored_parsers/tree-sitter-gleam/Cargo.toml | 29 - vendored_parsers/tree-sitter-gleam/LICENSE | 202 - vendored_parsers/tree-sitter-gleam/README.md | 103 - .../tree-sitter-gleam/binding.gyp | 19 - .../bindings/node/binding.cc | 28 - .../tree-sitter-gleam/bindings/node/index.js | 19 - .../tree-sitter-gleam/bindings/rust/build.rs | 35 - .../tree-sitter-gleam/bindings/rust/lib.rs | 62 - vendored_parsers/tree-sitter-gleam/grammar.js | 902 - .../tree-sitter-gleam/package-lock.json | 2124 - .../tree-sitter-gleam/package.json | 46 - .../tree-sitter-gleam/queries/highlights.scm | 131 - .../tree-sitter-gleam/queries/locals.scm | 17 - .../tree-sitter-gleam/queries/tags.scm | 41 - .../scripts/integration_test.sh | 24 - .../tree-sitter-gleam/scripts/parse_repo.sh | 29 - .../tree-sitter-gleam/src/grammar.json | 7054 -- .../tree-sitter-gleam/src/node-types.json | 5298 - .../tree-sitter-gleam/src/parser.c | 84091 ---------------- .../tree-sitter-gleam/src/scanner.c | 29 - .../src/tree_sitter/parser.h | 224 - .../test/corpus/attributes.txt | 101 - .../tree-sitter-gleam/test/corpus/cases.txt | 255 - .../test/corpus/constants.txt | 465 - .../test/corpus/custom_types.txt | 272 - .../test/corpus/destructuring.txt | 78 - .../tree-sitter-gleam/test/corpus/echo.txt | 112 - .../test/corpus/expressions.txt | 179 - .../test/corpus/external_functions.txt | 175 - .../test/corpus/external_types.txt | 52 - .../test/corpus/functions.txt | 1123 - .../test/corpus/guard_expressions.txt | 73 - .../tree-sitter-gleam/test/corpus/imports.txt | 144 - .../tree-sitter-gleam/test/corpus/pipes.txt | 20 - .../test/corpus/statements.txt | 59 - .../tree-sitter-gleam/test/corpus/strings.txt | 38 - .../tree-sitter-gleam/test/corpus/targets.txt | 48 - .../test/corpus/type_aliases.txt | 131 - .../test/corpus/whole_files.txt | 323 - .../test/highlight/bit_strings.gleam | 25 - .../test/highlight/cases.gleam | 11 - .../test/highlight/constants.gleam | 10 - .../test/highlight/destructuring.gleam | 32 - .../test/highlight/echo.gleam | 4 - .../test/highlight/expressions.gleam | 16 - .../test/highlight/functions.gleam | 129 - .../test/highlight/modules.gleam | 84 - .../test/highlight/records.gleam | 28 - .../test/highlight/reserved.gleam | 14 - .../test/integration/.gitignore | 2 - .../tree-sitter-gleam/test/tags/frame.gleam | 75 - .../test/tags/functions.gleam | 10 - 66 files changed, 17 insertions(+), 104884 deletions(-) delete mode 120000 vendored_parsers/highlights/gleam.scm delete mode 100644 vendored_parsers/tree-sitter-gleam/.gitattributes delete mode 100644 vendored_parsers/tree-sitter-gleam/.github/ISSUE_TEMPLATE/config.yml delete mode 100644 vendored_parsers/tree-sitter-gleam/.github/ISSUE_TEMPLATE/issue.md delete mode 100644 vendored_parsers/tree-sitter-gleam/.github/workflows/ci.yml delete mode 100644 vendored_parsers/tree-sitter-gleam/.github/workflows/generate-parser.yml delete mode 100644 vendored_parsers/tree-sitter-gleam/.github/workflows/release.yml delete mode 100644 vendored_parsers/tree-sitter-gleam/.gitignore delete mode 100644 vendored_parsers/tree-sitter-gleam/Cargo.lock delete mode 100644 vendored_parsers/tree-sitter-gleam/Cargo.toml delete mode 100644 vendored_parsers/tree-sitter-gleam/LICENSE delete mode 100644 vendored_parsers/tree-sitter-gleam/README.md delete mode 100644 vendored_parsers/tree-sitter-gleam/binding.gyp delete mode 100644 vendored_parsers/tree-sitter-gleam/bindings/node/binding.cc delete mode 100644 vendored_parsers/tree-sitter-gleam/bindings/node/index.js delete mode 100644 vendored_parsers/tree-sitter-gleam/bindings/rust/build.rs delete mode 100644 vendored_parsers/tree-sitter-gleam/bindings/rust/lib.rs delete mode 100644 vendored_parsers/tree-sitter-gleam/grammar.js delete mode 100644 vendored_parsers/tree-sitter-gleam/package-lock.json delete mode 100644 vendored_parsers/tree-sitter-gleam/package.json delete mode 100644 vendored_parsers/tree-sitter-gleam/queries/highlights.scm delete mode 100644 vendored_parsers/tree-sitter-gleam/queries/locals.scm delete mode 100644 vendored_parsers/tree-sitter-gleam/queries/tags.scm delete mode 100755 vendored_parsers/tree-sitter-gleam/scripts/integration_test.sh delete mode 100755 vendored_parsers/tree-sitter-gleam/scripts/parse_repo.sh delete mode 100644 vendored_parsers/tree-sitter-gleam/src/grammar.json delete mode 100644 vendored_parsers/tree-sitter-gleam/src/node-types.json delete mode 100644 vendored_parsers/tree-sitter-gleam/src/parser.c delete mode 100644 vendored_parsers/tree-sitter-gleam/src/scanner.c delete mode 100644 vendored_parsers/tree-sitter-gleam/src/tree_sitter/parser.h delete mode 100644 vendored_parsers/tree-sitter-gleam/test/corpus/attributes.txt delete mode 100644 vendored_parsers/tree-sitter-gleam/test/corpus/cases.txt delete mode 100644 vendored_parsers/tree-sitter-gleam/test/corpus/constants.txt delete mode 100644 vendored_parsers/tree-sitter-gleam/test/corpus/custom_types.txt delete mode 100644 vendored_parsers/tree-sitter-gleam/test/corpus/destructuring.txt delete mode 100644 vendored_parsers/tree-sitter-gleam/test/corpus/echo.txt delete mode 100644 vendored_parsers/tree-sitter-gleam/test/corpus/expressions.txt delete mode 100644 vendored_parsers/tree-sitter-gleam/test/corpus/external_functions.txt delete mode 100644 vendored_parsers/tree-sitter-gleam/test/corpus/external_types.txt delete mode 100644 vendored_parsers/tree-sitter-gleam/test/corpus/functions.txt delete mode 100644 vendored_parsers/tree-sitter-gleam/test/corpus/guard_expressions.txt delete mode 100644 vendored_parsers/tree-sitter-gleam/test/corpus/imports.txt delete mode 100644 vendored_parsers/tree-sitter-gleam/test/corpus/pipes.txt delete mode 100644 vendored_parsers/tree-sitter-gleam/test/corpus/statements.txt delete mode 100644 vendored_parsers/tree-sitter-gleam/test/corpus/strings.txt delete mode 100644 vendored_parsers/tree-sitter-gleam/test/corpus/targets.txt delete mode 100644 vendored_parsers/tree-sitter-gleam/test/corpus/type_aliases.txt delete mode 100644 vendored_parsers/tree-sitter-gleam/test/corpus/whole_files.txt delete mode 100644 vendored_parsers/tree-sitter-gleam/test/highlight/bit_strings.gleam delete mode 100644 vendored_parsers/tree-sitter-gleam/test/highlight/cases.gleam delete mode 100644 vendored_parsers/tree-sitter-gleam/test/highlight/constants.gleam delete mode 100644 vendored_parsers/tree-sitter-gleam/test/highlight/destructuring.gleam delete mode 100644 vendored_parsers/tree-sitter-gleam/test/highlight/echo.gleam delete mode 100644 vendored_parsers/tree-sitter-gleam/test/highlight/expressions.gleam delete mode 100644 vendored_parsers/tree-sitter-gleam/test/highlight/functions.gleam delete mode 100644 vendored_parsers/tree-sitter-gleam/test/highlight/modules.gleam delete mode 100644 vendored_parsers/tree-sitter-gleam/test/highlight/records.gleam delete mode 100644 vendored_parsers/tree-sitter-gleam/test/highlight/reserved.gleam delete mode 100644 vendored_parsers/tree-sitter-gleam/test/integration/.gitignore delete mode 100644 vendored_parsers/tree-sitter-gleam/test/tags/frame.gleam delete mode 100644 vendored_parsers/tree-sitter-gleam/test/tags/functions.gleam diff --git a/CHANGELOG.md b/CHANGELOG.md index 31ee3d85b..e288d3448 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ### Parsing -Added support for protocol buffer files. Updated CMake, Solidity, HCL, Dart, Elm, Devicetree and R parsers. +Added support for protocol buffer files. Updated CMake, Solidity, HCL, Dart, Elm, Devicetree, Gleam and R parsers. ### Display diff --git a/Cargo.lock b/Cargo.lock index 0f93b153c..cbfd489c9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -288,6 +288,7 @@ dependencies = [ "tree-sitter-elm", "tree-sitter-erlang", "tree-sitter-fsharp", + "tree-sitter-gleam", "tree-sitter-go", "tree-sitter-haskell", "tree-sitter-hcl", @@ -1161,6 +1162,16 @@ dependencies = [ "tree-sitter-language", ] +[[package]] +name = "tree-sitter-gleam" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0175c53793bda5d444360dd5add25463d18d66afb7f521d6791e2fc61bf2fb3" +dependencies = [ + "cc", + "tree-sitter-language", +] + [[package]] name = "tree-sitter-go" version = "0.23.4" diff --git a/Cargo.toml b/Cargo.toml index 5a71b2a58..c6a0d2890 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -89,6 +89,7 @@ tree-sitter-elixir = "0.3.4" tree-sitter-elm = "5.8.0" tree-sitter-erlang = "0.13.0" tree-sitter-fsharp = "0.1.0" +tree-sitter-gleam = "1.0.0" tree-sitter-go = "0.23.4" tree-sitter-haskell = "0.23.1" tree-sitter-hcl = "1.1.0" diff --git a/build.rs b/build.rs index a9800c2bd..ef70b0b0d 100644 --- a/build.rs +++ b/build.rs @@ -92,11 +92,6 @@ fn main() { src_dir: "vendored_parsers/tree-sitter-elvish-src", extra_files: vec![], }, - TreeSitterParser { - name: "tree-sitter-gleam", - src_dir: "vendored_parsers/tree-sitter-gleam-src", - extra_files: vec!["scanner.c"], - }, TreeSitterParser { name: "tree-sitter-hack", src_dir: "vendored_parsers/tree-sitter-hack-src", diff --git a/src/parse/tree_sitter_parser.rs b/src/parse/tree_sitter_parser.rs index 256755641..3d073dd68 100644 --- a/src/parse/tree_sitter_parser.rs +++ b/src/parse/tree_sitter_parser.rs @@ -75,7 +75,6 @@ extern "C" { fn tree_sitter_commonlisp() -> ts::Language; fn tree_sitter_elisp() -> ts::Language; fn tree_sitter_elvish() -> ts::Language; - fn tree_sitter_gleam() -> ts::Language; fn tree_sitter_hare() -> ts::Language; fn tree_sitter_hack() -> ts::Language; fn tree_sitter_janet_simple() -> ts::Language; @@ -393,16 +392,14 @@ pub(crate) fn from_language(language: guess::Language) -> TreeSitterConfig { } } Gleam => { - let language = unsafe { tree_sitter_gleam() }; + let language_fn = tree_sitter_gleam::LANGUAGE; + let language = tree_sitter::Language::new(language_fn); TreeSitterConfig { language: language.clone(), atom_nodes: ["string"].into_iter().collect(), delimiter_tokens: vec![("(", ")"), ("[", "]"), ("{", "}")], - highlight_query: ts::Query::new( - &language, - include_str!("../../vendored_parsers/highlights/gleam.scm"), - ) - .unwrap(), + highlight_query: ts::Query::new(&language, tree_sitter_gleam::HIGHLIGHT_QUERY) + .unwrap(), sub_languages: vec![], } } diff --git a/vendored_parsers/highlights/gleam.scm b/vendored_parsers/highlights/gleam.scm deleted file mode 120000 index 9fbbb425e..000000000 --- a/vendored_parsers/highlights/gleam.scm +++ /dev/null @@ -1 +0,0 @@ -../tree-sitter-gleam/queries/highlights.scm \ No newline at end of file diff --git a/vendored_parsers/tree-sitter-gleam/.gitattributes b/vendored_parsers/tree-sitter-gleam/.gitattributes deleted file mode 100644 index a4aada20b..000000000 --- a/vendored_parsers/tree-sitter-gleam/.gitattributes +++ /dev/null @@ -1,3 +0,0 @@ -src/** linguist-generated -src/scanner.c -linguist-generated -test/** linguist-documentation diff --git a/vendored_parsers/tree-sitter-gleam/.github/ISSUE_TEMPLATE/config.yml b/vendored_parsers/tree-sitter-gleam/.github/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index 3ba13e0ce..000000000 --- a/vendored_parsers/tree-sitter-gleam/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1 +0,0 @@ -blank_issues_enabled: false diff --git a/vendored_parsers/tree-sitter-gleam/.github/ISSUE_TEMPLATE/issue.md b/vendored_parsers/tree-sitter-gleam/.github/ISSUE_TEMPLATE/issue.md deleted file mode 100644 index e1954070e..000000000 --- a/vendored_parsers/tree-sitter-gleam/.github/ISSUE_TEMPLATE/issue.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -name: Issue -about: A problem or suggestion -title: '' -labels: '' -assignees: '' - ---- - -> [!IMPORTANT] -> Please ensure you are using the latest commit in this repo. -> Older versions are not supported. diff --git a/vendored_parsers/tree-sitter-gleam/.github/workflows/ci.yml b/vendored_parsers/tree-sitter-gleam/.github/workflows/ci.yml deleted file mode 100644 index 1c99b18ab..000000000 --- a/vendored_parsers/tree-sitter-gleam/.github/workflows/ci.yml +++ /dev/null @@ -1,67 +0,0 @@ -name: CI - -on: [push, pull_request] - -jobs: - test: - name: Test - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: - - macos-latest - - ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Install Node - uses: actions/setup-node@v4 - - - name: Cache npm dependencies - uses: actions/cache@v3 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - - - name: Install npm dependencies - run: npm ci - - - name: Ensure generated parser files are up to date - run: npx tree-sitter generate - - - name: Run tree-sitter tests - run: npx tree-sitter test - - - name: Check formatting - run: npm run check-formatted - - integration-test: - name: Integration Test - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Install Node - uses: actions/setup-node@v4 - - - name: Cache npm dependencies - uses: actions/cache@v3 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - - - name: Install npm dependencies - run: npm ci - - - name: Ensure generated parser files are up to date - run: npx tree-sitter generate - - - name: Run integration tests - run: ./scripts/integration_test.sh diff --git a/vendored_parsers/tree-sitter-gleam/.github/workflows/generate-parser.yml b/vendored_parsers/tree-sitter-gleam/.github/workflows/generate-parser.yml deleted file mode 100644 index dd357f68d..000000000 --- a/vendored_parsers/tree-sitter-gleam/.github/workflows/generate-parser.yml +++ /dev/null @@ -1,41 +0,0 @@ -# generates the parser with 'tree-sitter generate' if the parser is out of date -name: Generate Parser - -on: - push: - branches: - - main - -jobs: - generate: - name: Generate Parser - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Install Node - uses: actions/setup-node@v4 - - - name: Cache npm dependencies - uses: actions/cache@v3 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - - - name: Install npm dependencies - run: npm ci - - - name: Generate parser files - run: npx tree-sitter generate - - - name: Commit generated parser files - run: | - git config --local user.email "$(git log --format='%ae' HEAD^!)" - git config --local user.name "$(git log --format='%an' HEAD^!)" - git add src - git commit -m "Generate parser" || true - git push diff --git a/vendored_parsers/tree-sitter-gleam/.github/workflows/release.yml b/vendored_parsers/tree-sitter-gleam/.github/workflows/release.yml deleted file mode 100644 index dd7049e95..000000000 --- a/vendored_parsers/tree-sitter-gleam/.github/workflows/release.yml +++ /dev/null @@ -1,56 +0,0 @@ -name: release -on: - push: - tags: - - "v*" - -jobs: - build-release: - name: build-release - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: - - macos-latest - - ubuntu-latest - steps: - - name: Checkout Repository - uses: actions/checkout@v4 - - - name: Install Node - uses: actions/setup-node@v4 - - - name: Install npm dependencies - run: npm ci - - - name: Ensure generated parser files are up to date - run: npx tree-sitter generate - - - name: Ensure tests pass - run: npx tree-sitter test - - - name: Compile library file - run: cc -shared -fPIC -g -O2 -I src src/parser.c src/scanner.c -o tree-sitter-gleam.so - - - name: Create archive - run: | - VERSION="${GITHUB_REF#refs/tags/}" - case ${{ matrix.os }} in - "ubuntu-latest") FAMILY="linux";; - "macos-latest") FAMILY="macos";; - esac - ARCHIVE="tree-sitter-gleam-$VERSION-$FAMILY.tar.gz" - - tar -czf $ARCHIVE tree-sitter-gleam.so - - echo "ASSET=$ARCHIVE" >> $GITHUB_ENV - - - name: Upload release archive - uses: softprops/action-gh-release@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - draft: true - prerelease: false - fail_on_unmatched_files: true - files: | - ${{ env.ASSET }} diff --git a/vendored_parsers/tree-sitter-gleam/.gitignore b/vendored_parsers/tree-sitter-gleam/.gitignore deleted file mode 100644 index e18f95749..000000000 --- a/vendored_parsers/tree-sitter-gleam/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -*.wasm -build -gleam.so* -log.html -node_modules -target diff --git a/vendored_parsers/tree-sitter-gleam/Cargo.lock b/vendored_parsers/tree-sitter-gleam/Cargo.lock deleted file mode 100644 index a246eee1b..000000000 --- a/vendored_parsers/tree-sitter-gleam/Cargo.lock +++ /dev/null @@ -1,89 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 3 - -[[package]] -name = "aho-corasick" -version = "1.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" -dependencies = [ - "memchr", -] - -[[package]] -name = "cc" -version = "1.1.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07b1695e2c7e8fc85310cde85aeaab7e3097f593c91d209d3f9df76c928100f0" -dependencies = [ - "shlex", -] - -[[package]] -name = "memchr" -version = "2.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" - -[[package]] -name = "regex" -version = "1.10.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619" -dependencies = [ - "aho-corasick", - "memchr", - "regex-automata", - "regex-syntax", -] - -[[package]] -name = "regex-automata" -version = "0.4.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" -dependencies = [ - "aho-corasick", - "memchr", - "regex-syntax", -] - -[[package]] -name = "regex-syntax" -version = "0.8.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" - -[[package]] -name = "shlex" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" - -[[package]] -name = "tree-sitter" -version = "0.23.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20f4cd3642c47a85052a887d86704f4eac272969f61b686bdd3f772122aabaff" -dependencies = [ - "cc", - "regex", - "regex-syntax", - "tree-sitter-language", -] - -[[package]] -name = "tree-sitter-gleam" -version = "1.0.0" -dependencies = [ - "cc", - "tree-sitter", - "tree-sitter-language", -] - -[[package]] -name = "tree-sitter-language" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2545046bd1473dac6c626659cc2567c6c0ff302fc8b84a56c4243378276f7f57" diff --git a/vendored_parsers/tree-sitter-gleam/Cargo.toml b/vendored_parsers/tree-sitter-gleam/Cargo.toml deleted file mode 100644 index 0e5e6ed62..000000000 --- a/vendored_parsers/tree-sitter-gleam/Cargo.toml +++ /dev/null @@ -1,29 +0,0 @@ -[package] -name = "tree-sitter-gleam" -description = "gleam grammar for the tree-sitter parsing library" -version = "1.0.0" -keywords = ["incremental", "parsing", "gleam"] -categories = ["parsing", "text-editors"] -repository = "https://github.com/tree-sitter/tree-sitter-gleam" -edition = "2018" -license = "Apache-2.0" - -build = "bindings/rust/build.rs" -include = [ - "bindings/rust/*", - "grammar.js", - "queries/*", - "src/*", -] - -[lib] -path = "bindings/rust/lib.rs" - -[dependencies] -tree-sitter-language = "0.1.0" - -[dev-dependencies] -tree-sitter = "0.23" - -[build-dependencies] -cc = "1.0" diff --git a/vendored_parsers/tree-sitter-gleam/LICENSE b/vendored_parsers/tree-sitter-gleam/LICENSE deleted file mode 100644 index d64569567..000000000 --- a/vendored_parsers/tree-sitter-gleam/LICENSE +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/vendored_parsers/tree-sitter-gleam/README.md b/vendored_parsers/tree-sitter-gleam/README.md deleted file mode 100644 index e60dc78a1..000000000 --- a/vendored_parsers/tree-sitter-gleam/README.md +++ /dev/null @@ -1,103 +0,0 @@ -tree-sitter-gleam -================= - -A [tree-sitter] grammar for the [Gleam programming language] - -[tree-sitter]: https://tree-sitter.github.io -[Gleam programming language]: https://gleam.run - -This grammar is able to parse the entire Gleam language. It is largely based -on the Gleam parser itself, and deviations from that are noted throughout the -codebase. - -Usage ------ - -tree-sitter-gleam, as with all tree-sitter grammars, is of limited utility on -its own. Instead, tree-sitter-gleam is best used as a Gleam parser that can be -embedded in other projects. An example of such a project is -[tree-sitter-gleam-rust-example]. - -However, [tree-sitter-cli] can be used with this grammar to show generated parse -trees and syntax highlighting for a given Gleam file. - -1. [Install tree-sitter-cli] -2. Create a `tree-sitters` directory in your home directory. -3. Clone this repository (or symlink it) into the new `~/tree-sitters/` directory. -4. Run `tree-sitter parse path/to/file.gleam` to be shown the parse tree for the - file. -5. Run `tree-sitter highlight path/to/file.gleam` to be shown the file with - syntax highlighting applied. - -[tree-sitter-gleam-rust-example]: https://github.com/J3RN/tree-sitter-gleam-rust-example -[tree-sitter-cli]: https://github.com/tree-sitter/tree-sitter/blob/master/cli/README.md -[Install tree-sitter-cli]: https://github.com/tree-sitter/tree-sitter/blob/master/cli/README.md#installation - -Various Gotchas ---------------- - -There are a few nodes in the generated AST that may be confusing at first: - -- `type` :: A very ambiguous name, but this refers to a concrete type such as - `List(#(String, Int))` -- `type_name` :: Refers to essentially the left side of a type declaration and - includes parameters, e.g. `MyType(foo, bar)`. -- `type_identifier` :: Known in the parser as "UpName", this is what you would - intuitively think of as a type's name, such as `List` or `Result`. -- `function_call` :: The name is not confusing, but its structure may be. Since - Gleam supports first-class functions, the function being invoked could be a - variable, a field of a record, an element of a tuple, etc. Some of these are - ambiguous without context that tree-sitter does not have. e.g. - In `string.replace(x, y, z)`, `string` could be a record with a field - `replace` that is a function or it could be a module with a function `replace` - β€”there's no way for the parser to know. In this case, it will be parsed to - `(function_call function: (field_access ...) ...)` , as I arbitrarily decided - to always assume the code is accessing a field on a record. -- `constant_field_access` :: Recognizes when a reference to a remote function is used as a constant's value. Generally field accesses are indistinguishable from remote function invocations by the parser so `field_access` is the node name used for both (hence this misnomer). - -This is not a comprehensive list. If you find a node confusing, search for it -in `grammar.js`, as it might have an explanatory comment. Either way, feel free -to add it to this list and send a PR! ✨ - -To-do List ----------- - -- [x] Add ability to parse all language constructs -- [x] Syntax highlighting queries -- [ ] Have an issue? Let me know! Please [open an issue] πŸ’ - -[open an issue]: https://github.com/J3RN/tree-sitter-gleam/issues/new - -Contributing ------------- - -1. Change files such as `grammar.js` and `queries/highlight.scm`. -2. The grammar needs to be generated from the `grammar.js` file by running `npm run generate`. -3. Add parser feature tests to the relevant file(s) in `test/corpus/`, or make a new one. -4. Run `npm run test` and fix any failing tests. - -Policies --------- - -### Backwards-Compatibility Policy - -Per the conversation in [#55](https://github.com/gleam-lang/tree-sitter-gleam/pull/55), we have decided that from v0.28.0 forward, tree-sitter-gleam will maintain backwards compatibility with the previous two minor versions; meaning that each release will support three versions: -- 0.x.0 -- 0.x-1.* -- 0.x-2.* - -e.g. The v0.30.0 release of tree-sitter gleam will support the following version of the Gleam language: -- v0.30.0 -- v0.29.* -- v0.28.* - -Style ------ - -To prevent headaches from stylistic differences, I request that you please -follow these style suggestions. πŸ™ - -- Remove all non-mandatory trailing whitespace. -- Ensure a final newline is present at the end of all files (this is the default - in Vim, Emacs). -- Format JavaScript by running `npm run format`. diff --git a/vendored_parsers/tree-sitter-gleam/binding.gyp b/vendored_parsers/tree-sitter-gleam/binding.gyp deleted file mode 100644 index c7841a89e..000000000 --- a/vendored_parsers/tree-sitter-gleam/binding.gyp +++ /dev/null @@ -1,19 +0,0 @@ -{ - "targets": [ - { - "target_name": "tree_sitter_gleam_binding", - "include_dirs": [ - " -#include "nan.h" - -using namespace v8; - -extern "C" TSLanguage * tree_sitter_gleam(); - -namespace { - -NAN_METHOD(New) {} - -void Init(Local exports, Local module) { - Local tpl = Nan::New(New); - tpl->SetClassName(Nan::New("Language").ToLocalChecked()); - tpl->InstanceTemplate()->SetInternalFieldCount(1); - - Local constructor = Nan::GetFunction(tpl).ToLocalChecked(); - Local instance = constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); - Nan::SetInternalFieldPointer(instance, 0, tree_sitter_gleam()); - - Nan::Set(instance, Nan::New("name").ToLocalChecked(), Nan::New("gleam").ToLocalChecked()); - Nan::Set(module, Nan::New("exports").ToLocalChecked(), instance); -} - -NODE_MODULE(tree_sitter_gleam_binding, Init) - -} // namespace diff --git a/vendored_parsers/tree-sitter-gleam/bindings/node/index.js b/vendored_parsers/tree-sitter-gleam/bindings/node/index.js deleted file mode 100644 index 675e52cce..000000000 --- a/vendored_parsers/tree-sitter-gleam/bindings/node/index.js +++ /dev/null @@ -1,19 +0,0 @@ -try { - module.exports = require("../../build/Release/tree_sitter_gleam_binding"); -} catch (error1) { - if (error1.code !== 'MODULE_NOT_FOUND') { - throw error1; - } - try { - module.exports = require("../../build/Debug/tree_sitter_gleam_binding"); - } catch (error2) { - if (error2.code !== 'MODULE_NOT_FOUND') { - throw error2; - } - throw error1 - } -} - -try { - module.exports.nodeTypeInfo = require("../../src/node-types.json"); -} catch (_) {} diff --git a/vendored_parsers/tree-sitter-gleam/bindings/rust/build.rs b/vendored_parsers/tree-sitter-gleam/bindings/rust/build.rs deleted file mode 100644 index 2dd4a7adc..000000000 --- a/vendored_parsers/tree-sitter-gleam/bindings/rust/build.rs +++ /dev/null @@ -1,35 +0,0 @@ -fn main() { - let src_dir = std::path::Path::new("src"); - - let mut c_config = cc::Build::new(); - c_config.include(&src_dir); - c_config - .flag_if_supported("-Wno-unused-parameter") - .flag_if_supported("-Wno-unused-but-set-variable") - .flag_if_supported("-Wno-trigraphs"); - let parser_path = src_dir.join("parser.c"); - c_config.file(&parser_path); - - let scanner_path = src_dir.join("scanner.c"); - c_config.file(&scanner_path); - println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); - - c_config.compile("parser"); - println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); - - // If your language uses an external scanner written in C++, - // then include this block of code: - - /* - let mut cpp_config = cc::Build::new(); - cpp_config.cpp(true); - cpp_config.include(&src_dir); - cpp_config - .flag_if_supported("-Wno-unused-parameter") - .flag_if_supported("-Wno-unused-but-set-variable"); - let scanner_path = src_dir.join("scanner.cc"); - cpp_config.file(&scanner_path); - cpp_config.compile("scanner"); - println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); - */ -} diff --git a/vendored_parsers/tree-sitter-gleam/bindings/rust/lib.rs b/vendored_parsers/tree-sitter-gleam/bindings/rust/lib.rs deleted file mode 100644 index 4de561c17..000000000 --- a/vendored_parsers/tree-sitter-gleam/bindings/rust/lib.rs +++ /dev/null @@ -1,62 +0,0 @@ -//! This crate provides Gleam language support for the [tree-sitter][] parsing library. -//! -//! Typically, you will use the [language][language func] function to add this language to a -//! tree-sitter [Parser][], and then use the parser to parse some code: -//! -//! ``` -//! use tree_sitter::Parser; -//! -//! let code = r#" -//! import gleam/io -//! -//! pub fn main() { -//! io.println("hello, friend!") -//! } -//! "#; -//! let mut parser = Parser::new(); -//! let language = tree_sitter_gleam::LANGUAGE; -//! parser -//! .set_language(&language.into()) -//! .expect("Error loading Gleam parser"); -//! let tree = parser.parse(code, None).unwrap(); -//! assert!(!tree.root_node().has_error()); -//! ``` -//! -//! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -//! [language func]: fn.language.html -//! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html -//! [tree-sitter]: https://tree-sitter.github.io/ - -use tree_sitter_language::LanguageFn; - -extern "C" { - fn tree_sitter_gleam() -> *const (); -} - -/// The tree-sitter [`LanguageFn`] for this grammar. -pub const LANGUAGE: LanguageFn = unsafe { LanguageFn::from_raw(tree_sitter_gleam) }; - -/// The content of the [`node-types.json`][] file for this grammar. -/// -/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types -pub const NODE_TYPES: &'static str = include_str!("../../src/node-types.json"); - -/// The syntax highlighting query for this language. -pub const HIGHLIGHT_QUERY: &'static str = include_str!("../../queries/highlights.scm"); - -// The locals tagging query for this language. -pub const LOCALS_QUERY: &'static str = include_str!("../../queries/locals.scm"); - -/// The symbol tagging query for this language. -pub const TAGS_QUERY: &'static str = include_str!("../../queries/tags.scm"); - -#[cfg(test)] -mod tests { - #[test] - fn test_can_load_grammar() { - let mut parser = tree_sitter::Parser::new(); - parser - .set_language(&super::LANGUAGE.into()) - .expect("Error loading Gleam parser"); - } -} diff --git a/vendored_parsers/tree-sitter-gleam/grammar.js b/vendored_parsers/tree-sitter-gleam/grammar.js deleted file mode 100644 index c0d5d0caa..000000000 --- a/vendored_parsers/tree-sitter-gleam/grammar.js +++ /dev/null @@ -1,902 +0,0 @@ -const NEWLINE = /\r?\n/; - -module.exports = grammar({ - name: "gleam", - externals: ($) => [$.quoted_content], - extras: ($) => [ - NEWLINE, - /\s/, - $.module_comment, - $.statement_comment, - $.comment, - ], - conflicts: ($) => [ - [$._maybe_record_expression, $._maybe_tuple_expression], - [ - $._maybe_record_expression, - $._maybe_tuple_expression, - $.remote_constructor_name, - ], - [$.case_subjects], - [$.source_file], - [$._constant_value, $._case_clause_guard_unit], - [$.integer], - [$.echo], - ], - rules: { - /* General rules */ - source_file: ($) => - repeat(choice($.target_group, $._module_statement, $._statement_seq)), - - _module_statement: ($) => - choice( - $.import, - $.constant, - $.external_type, - $.external_function, - $.function, - $.type_definition, - $.type_alias, - $.attribute - ), - - /* Comments */ - module_comment: ($) => token(seq("////", /.*/)), - statement_comment: ($) => token(seq("///", /.*/)), - comment: ($) => token(seq("//", /.*/)), - - /* Target groups - * DEPRECATED: This syntax was replaced with attributes in v0.30. - */ - target_group: ($) => - seq( - "if", - field("target", $.target), - "{", - repeat($._module_statement), - "}" - ), - target: ($) => choice("erlang", "javascript"), - - /* Attributes */ - attribute: ($) => - seq( - "@", - field("name", $.identifier), - optional(field("arguments", alias($._attribute_arguments, $.arguments))) - ), - - _attribute_arguments: ($) => - seq("(", series_of($.attribute_value, ","), ")"), - - attribute_value: ($) => - choice( - $._constant_value, - seq(field("label", $.label), ":", field("value", $._constant_value)) - ), - - /* Import statements */ - import: ($) => - seq( - "import", - field("module", $.module), - optional(seq(".", field("imports", $.unqualified_imports))), - optional(seq("as", field("alias", choice($.identifier, $.discard)))) - ), - module: ($) => seq($._name, repeat(seq("/", $._name))), - unqualified_imports: ($) => - seq("{", optional(series_of($.unqualified_import, ",")), "}"), - unqualified_import: ($) => - choice( - seq( - field("name", $.identifier), - optional(seq("as", field("alias", $.identifier))) - ), - seq( - "type", - field("name", $.type_identifier), - optional(seq("as", field("alias", $.type_identifier))) - ), - seq( - field("name", $.constructor_name), - optional(seq("as", field("alias", $.constructor_name))) - ) - ), - - /* Constant statements */ - constant: ($) => - seq( - optional($.visibility_modifier), - "const", - field("name", $.identifier), - optional($._constant_type_annotation), - "=", - field("value", $._constant_value) - ), - _constant_value: ($) => - choice( - $.string, - $.float, - $.integer, - alias($.constant_tuple, $.tuple), - alias($.constant_list, $.list), - alias($._constant_bit_string, $.bit_string), - alias($.constant_record, $.record), - $.identifier, - alias($.constant_field_access, $.field_access) - ), - constant_tuple: ($) => - seq("#", "(", optional(series_of($._constant_value, ",")), ")"), - constant_list: ($) => - seq("[", optional(series_of($._constant_value, ",")), "]"), - ...bit_string_rules("constant", "_constant_value", "integer"), - constant_record: ($) => - seq( - field("name", choice($.constructor_name, $.remote_constructor_name)), - optional( - field("arguments", alias($.constant_record_arguments, $.arguments)) - ) - ), - constant_record_arguments: ($) => - seq( - "(", - optional(series_of(alias($.constant_record_argument, $.argument), ",")), - ")" - ), - constant_record_argument: ($) => - choice( - seq( - optional(seq(field("label", $.label), ":")), - field("value", $._constant_value) - ), - seq(field("label", $.label), ":") - ), - // This rule exists to parse remote function references which are generally - // indistinguishable from field accesses and so share an AST node. - constant_field_access: ($) => - seq(field("record", $.identifier), ".", field("field", $.label)), - - /* Special constant types */ - // Versions of $._type, $._type_annotation, etc, that have constraints - // specific to constants. - _constant_type: ($) => - choice( - $.type_hole, - alias($.constant_tuple_type, $.tuple_type), - alias($.constant_function_type, $.function_type), - alias($.constant_type, $.type) - ), - _constant_type_annotation: ($) => seq(":", field("type", $._constant_type)), - constant_tuple_type: ($) => - seq("#", "(", optional(series_of($._constant_type, ",")), ")"), - constant_function_type: ($) => - seq( - "fn", - optional( - field( - "parameter_types", - alias( - $.constant_function_parameter_types, - $.function_parameter_types - ) - ) - ), - "->", - field("return_type", $._constant_type) - ), - constant_function_parameter_types: ($) => - seq("(", optional(series_of($._constant_type, ",")), ")"), - constant_type: ($) => - seq( - field("name", choice($.type_identifier, $.remote_type_identifier)), - optional( - field("arguments", alias($.constant_type_arguments, $.type_arguments)) - ) - ), - constant_type_arguments: ($) => - seq( - "(", - optional( - series_of(alias($.constant_type_argument, $.type_argument), ",") - ), - ")" - ), - constant_type_argument: ($) => $._constant_type, - - external_type: ($) => - prec.right( - seq( - optional($.visibility_modifier), - // DEPRECATED: the external token was removed in v0.30. - optional("external"), - "type", - $.type_name - ) - ), - - /* External function */ - external_function: ($) => - seq( - optional($.visibility_modifier), - "external", - "fn", - field("name", $.identifier), - field( - "parameters", - alias($.external_function_parameters, $.function_parameters) - ), - "->", - field("return_type", $._type), - "=", - field("body", $.external_function_body) - ), - // Different from module function parameters in that module function - // parameters may be labeled whereas external function parameters cannot. - external_function_parameters: ($) => - seq( - "(", - optional( - series_of( - alias($.external_function_parameter, $.function_parameter), - "," - ) - ), - ")" - ), - external_function_parameter: ($) => - seq( - optional(seq(field("name", $.identifier), ":")), - field("type", $._type) - ), - external_function_body: ($) => seq($.string, $.string), - - /* Functions */ - function: ($) => - prec.right( - seq( - optional($.visibility_modifier), - "fn", - field("name", $.identifier), - field("parameters", $.function_parameters), - optional(seq("->", field("return_type", $._type))), - optional(field("body", $.block)) - ) - ), - function_parameters: ($) => - seq("(", optional(series_of($.function_parameter, ",")), ")"), - function_parameter: ($) => - seq( - choice( - $._labeled_discard_param, - $._discard_param, - $._labeled_name_param, - $._name_param - ), - optional($._type_annotation) - ), - _labeled_discard_param: ($) => - seq(field("label", $.label), field("name", $.discard)), - _discard_param: ($) => field("name", $.discard), - _labeled_name_param: ($) => - seq(field("label", $.label), field("name", $.identifier)), - _name_param: ($) => field("name", $.identifier), - _statement_seq: ($) => repeat1($._statement), - _statement: ($) => - choice($._expression, $.let, $.let_assert, $.use, $.assert), - _expression: ($) => choice($._expression_unit, $.binary_expression), - binary_expression: ($) => - choice( - binaryExpr(prec.left, 1, "||", $._expression), - binaryExpr(prec.left, 2, "&&", $._expression), - binaryExpr(prec.left, 3, "==", $._expression), - binaryExpr(prec.left, 3, "!=", $._expression), - binaryExpr(prec.left, 4, "<", $._expression), - binaryExpr(prec.left, 4, "<=", $._expression), - binaryExpr(prec.left, 4, "<.", $._expression), - binaryExpr(prec.left, 4, "<=.", $._expression), - binaryExpr(prec.left, 4, ">", $._expression), - binaryExpr(prec.left, 4, ">=", $._expression), - binaryExpr(prec.left, 4, ">.", $._expression), - binaryExpr(prec.left, 4, ">=.", $._expression), - binaryExpr( - prec.left, - 5, - "|>", - $._expression, - choice($.pipeline_echo, $._expression) - ), - binaryExpr(prec.left, 6, "+", $._expression), - binaryExpr(prec.left, 6, "+.", $._expression), - binaryExpr(prec.left, 6, "-", $._expression), - binaryExpr(prec.left, 6, "-.", $._expression), - binaryExpr(prec.left, 7, "*", $._expression), - binaryExpr(prec.left, 7, "*.", $._expression), - binaryExpr(prec.left, 7, "/", $._expression), - binaryExpr(prec.left, 7, "/.", $._expression), - binaryExpr(prec.left, 7, "%", $._expression), - binaryExpr(prec.left, 7, "<>", $._expression) - ), - // The way that this function is written in the Gleam parser is essentially - // incompatible with tree-sitter. It first parses some base expression, - // then potentially parses tuple access, field access, record updates, or - // function calls as an extension of that base expression that was - // previously parsed. tree-sitter provides no facility to amend a node that - // was already successfully parsed. Therefore, tuple access, field access, - // record updates, and function calls must be parsed as alternatives to the - // expressions they build upon rather than extensions thereof. - _expression_unit: ($) => - choice( - $.string, - $.integer, - $.float, - // If we decide that record constructors (value constructors) are - // actually functions, this will require a refactor. - $.record, - $.identifier, - $.todo, - $.panic, - $.tuple, - $.echo, - $.list, - alias($._expression_bit_string, $.bit_string), - $.anonymous_function, - $.block, - $.case, - $.boolean_negation, - $.integer_negation, - $.record_update, - $.tuple_access, - $.field_access, - $.function_call - ), - record: ($) => - seq( - field("name", choice($.constructor_name, $.remote_constructor_name)), - optional(field("arguments", $.arguments)) - ), - todo: ($) => - prec.left( - seq( - "todo", - optional( - choice( - // DEPRECATED: The 'as' syntax was introduced in v0.30. - seq("(", field("message", $.string), ")"), - seq("as", field("message", $._expression)) - ) - ) - ) - ), - panic: ($) => - prec.left( - seq( - "panic", - optional( - choice( - seq("(", field("message", $.string), ")"), - seq("as", field("message", $._expression)) - ) - ) - ) - ), - pipeline_echo: (_$) => prec.left("echo"), - echo: ($) => seq("echo", $._expression), - tuple: ($) => seq("#", "(", optional(series_of($._expression, ",")), ")"), - list: ($) => - seq( - "[", - optional( - seq( - $._expression, - optional(repeat(seq(",", $._expression))), - optional(","), - optional(seq("..", field("spread", $._expression))) - ) - ), - "]" - ), - ...bit_string_rules("expression", "_expression_unit", "_expression"), - anonymous_function: ($) => - seq( - "fn", - field( - "parameters", - alias($.anonymous_function_parameters, $.function_parameters) - ), - optional(seq("->", field("return_type", $._type))), - field("body", $.block) - ), - anonymous_function_parameters: ($) => - seq( - "(", - optional( - series_of( - alias($.anonymous_function_parameter, $.function_parameter), - "," - ) - ), - ")" - ), - anonymous_function_parameter: ($) => - seq( - choice($._discard_param, $._name_param), - optional($._type_annotation) - ), - block: ($) => seq("{", optional($._statement_seq), "}"), - case: ($) => - seq( - "case", - field("subjects", $.case_subjects), - "{", - optional(field("clauses", $.case_clauses)), - "}" - ), - case_subjects: ($) => seq(series_of($._expression, ",")), - case_clauses: ($) => repeat1($.case_clause), - case_clause: ($) => - seq( - field("patterns", $.case_clause_patterns), - optional(field("guard", $.case_clause_guard)), - "->", - field("value", $._expression) - ), - // Technically the Gleam parser does support something like this: - // 1 | | 5 -> True - // However, that will cause an error further into the compiler. That format - // is not supported by this function. - case_clause_patterns: ($) => seq(series_of($.case_clause_pattern, "|")), - // The issue above comes from the fact that the parser equivalent of this - // function supports 0 patterns. This function does not. - case_clause_pattern: ($) => series_of($._pattern, ","), - case_clause_guard: ($) => seq("if", $._case_clause_guard_expression), - _case_clause_guard_expression: ($) => - choice( - $._case_clause_guard_unit, - alias($._case_clause_guard_binary_expression, $.binary_expression), - $.boolean_negation - ), - _case_clause_guard_binary_expression: ($) => - choice( - binaryExpr(prec.left, 1, "||", $._case_clause_guard_expression), - binaryExpr(prec.left, 2, "&&", $._case_clause_guard_expression), - binaryExpr(prec.left, 3, "==", $._case_clause_guard_expression), - binaryExpr(prec.left, 3, "!=", $._case_clause_guard_expression), - binaryExpr(prec.left, 4, "<", $._case_clause_guard_expression), - binaryExpr(prec.left, 4, "<=", $._case_clause_guard_expression), - binaryExpr(prec.left, 4, "<.", $._case_clause_guard_expression), - binaryExpr(prec.left, 4, "<=.", $._case_clause_guard_expression), - binaryExpr(prec.left, 4, ">", $._case_clause_guard_expression), - binaryExpr(prec.left, 4, ">=", $._case_clause_guard_expression), - binaryExpr(prec.left, 4, ">.", $._case_clause_guard_expression), - binaryExpr(prec.left, 4, ">=.", $._case_clause_guard_expression), - binaryExpr(prec.left, 5, "+", $._case_clause_guard_expression), - binaryExpr(prec.left, 5, "+.", $._case_clause_guard_expression), - binaryExpr(prec.left, 5, "-", $._case_clause_guard_expression), - binaryExpr(prec.left, 5, "-.", $._case_clause_guard_expression), - binaryExpr(prec.left, 6, "*", $._case_clause_guard_expression), - binaryExpr(prec.left, 6, "*.", $._case_clause_guard_expression), - binaryExpr(prec.left, 6, "/", $._case_clause_guard_expression), - binaryExpr(prec.left, 6, "/.", $._case_clause_guard_expression), - binaryExpr(prec.left, 6, "%", $._case_clause_guard_expression) - ), - _case_clause_guard_unit: ($) => - choice( - $.identifier, - prec(1, alias($._case_clause_tuple_access, $.tuple_access)), - seq("{", $._case_clause_guard_expression, "}"), - $._constant_value - ), - _case_clause_tuple_access: ($) => - seq(field("tuple", $.identifier), ".", field("index", $.integer)), - let_assert: ($) => - seq( - "let", - "assert", - $._assignment, - optional(seq("as", field("message", $._expression))) - ), - assert: ($) => - seq( - "assert", - field("value", $._expression), - optional(seq("as", field("message", $._expression))) - ), - let: ($) => seq("let", $._assignment), - use: ($) => - seq( - "use", - optional(field("assignments", $.use_assignments)), - "<-", - field("value", $._expression) - ), - use_assignments: ($) => series_of($.use_assignment, ","), - use_assignment: ($) => seq($._pattern, optional($._type_annotation)), - boolean_negation: ($) => seq("!", $._expression_unit), - integer_negation: ($) => seq("-", $._expression_unit), - _assignment: ($) => - seq( - field("pattern", $._pattern), - optional($._type_annotation), - "=", - field("value", $._expression) - ), - record_update: ($) => - seq( - field( - "constructor", - choice($.constructor_name, $.remote_constructor_name) - ), - "(", - "..", - field("spread", $._expression), - ",", - field("arguments", $.record_update_arguments), - ")" - ), - record_update_arguments: ($) => series_of($.record_update_argument, ","), - record_update_argument: ($) => - choice( - seq(field("label", $.label), ":", field("value", $._expression)), - seq(field("label", $.label), ":") - ), - // As with other AST nodes in this section, `_maybe_record_expression`, - // `_maybe_tuple_expression`, and `_maybe_function_expresssion` have no - // corollaries in the Gleam parser. These anonymous AST node denote any - // expression whose return type could be a record, tuple, or function, - // respectively. - // - // `let` and `assert` are exempted because in order to parse correctly, - // they would have to be wrapped in an expression group anyways. - _maybe_tuple_expression: ($) => - choice( - $.identifier, - $.function_call, - $.tuple, - $.block, - $.case, - $.field_access, - $.tuple_access - ), - tuple_access: ($) => - prec.left( - seq( - field("tuple", $._maybe_tuple_expression), - ".", - field("index", $.integer) - ) - ), - _maybe_record_expression: ($) => - choice( - $.record, - $.identifier, - $.function_call, - $.block, - $.case, - $.record_update, - $.field_access, - $.tuple_access - ), - field_access: ($) => - prec.left( - seq( - field("record", $._maybe_record_expression), - ".", - field("field", $.label) - ) - ), - // Remote functions (e.g. int.to_string) is parsed as a field access - // (accessing field to_string on record int) as it is impossible for the - // parser to determine with int is a module (and thus to_string a member - // function) or a local variable containing a record (and thus to_string is - // a field of that record). - // Similarly, the function name in local function calls (e.g. foo(arg)) is - // parsed as an $.identifier which is used to refer to both local variables - // and module functions, embodying the same ambiguity. - _maybe_function_expression: ($) => - choice( - $.identifier, - $.anonymous_function, - $.block, - $.case, - $.tuple_access, - $.field_access, - $.function_call - ), - // Interestingly, the code that parses function arguments also parses - // record arguments, hence the ambiguous name. - arguments: ($) => seq("(", optional(series_of($.argument, ",")), ")"), - argument: ($) => - choice( - seq( - optional(seq(field("label", $.label), ":")), - field("value", choice($.hole, $._expression)) - ), - seq(field("label", $.label), ":") - ), - hole: ($) => $._discard_name, - function_call: ($) => - seq( - field("function", $._maybe_function_expression), - field("arguments", $.arguments) - ), - _pattern_expression: ($) => - choice( - $.identifier, - $.discard, - $.record_pattern, - $.string, - $.integer, - $.float, - $.tuple_pattern, - alias($._pattern_bit_string, $.bit_string_pattern), - $.list_pattern, - alias($._pattern_binary_expression, $.binary_expression) - ), - _pattern_binary_expression: ($) => - choice( - binaryExpr(prec.left, 1, "<>", $._pattern_expression), - binaryExpr(prec.left, 1, "as", $.string, $.identifier) - ), - _pattern: ($) => - seq( - $._pattern_expression, - optional(field("assign", seq("as", $.identifier))) - ), - record_pattern: ($) => - seq( - field("name", choice($.constructor_name, $.remote_constructor_name)), - optional(field("arguments", $.record_pattern_arguments)) - ), - record_pattern_arguments: ($) => - seq( - "(", - optional(series_of($.record_pattern_argument, ",")), - optional($.pattern_spread), - ")" - ), - record_pattern_argument: ($) => - choice( - seq( - optional(seq(field("label", $.label), ":")), - field("pattern", $._pattern) - ), - seq(field("label", $.label), ":") - ), - pattern_spread: ($) => seq("..", optional(",")), - tuple_pattern: ($) => - seq("#", "(", optional(series_of($._pattern, ",")), ")"), - // The Gleam parser has a special catch for nested bitstrings here, which - // is interesting as the same error does not exist on constants. Anyhow, I - // wasn't really sure how to implement that easily here, and so didn't. - ...bit_string_rules( - "pattern", - "_pattern", - "_pattern_bit_string_segment_argument" - ), - _pattern_bit_string_segment_argument: ($) => - choice($.identifier, $.integer), - list_pattern: ($) => - seq( - "[", - optional(series_of($._pattern, ",")), - optional($.list_pattern_tail), - "]" - ), - list_pattern_tail: ($) => - seq("..", optional(choice($.identifier, $.discard))), - - visibility_modifier: ($) => "pub", - opacity_modifier: ($) => "opaque", - - /* Custom type definitions */ - type_definition: ($) => - seq( - optional($.visibility_modifier), - optional($.opacity_modifier), - "type", - $.type_name, - "{", - $.data_constructors, - "}" - ), - data_constructors: ($) => repeat1($.data_constructor), - data_constructor: ($) => - seq( - optional($.attribute), - field("name", $.constructor_name), - optional(field("arguments", $.data_constructor_arguments)) - ), - data_constructor_arguments: ($) => - seq("(", optional(series_of($.data_constructor_argument, ",")), ")"), - data_constructor_argument: ($) => - seq(optional(seq(field("label", $.label), ":")), field("value", $._type)), - - /* Type aliases */ - type_alias: ($) => - seq( - optional($.visibility_modifier), - optional($.opacity_modifier), - "type", - $.type_name, - "=", - $._type - ), - - /* Literals */ - string: ($) => - seq( - '"', - repeat(choice($.escape_sequence, $.quoted_content)), - token.immediate('"') - ), - escape_sequence: ($) => - choice( - token.immediate(/\\[efnrt\"\\]/), - token.immediate(/\\u\{[0-9a-fA-F]{1,6}\}/) - ), - float: ($) => /-?[0-9_]+\.[0-9_]*(e-?[0-9_]+)?/, - integer: ($) => - seq(optional("-"), choice($._hex, $._decimal, $._octal, $._binary)), - _hex: ($) => /0[xX][0-9a-fA-F_]+/, - _decimal: ($) => /[0-9][0-9_]*/, - _octal: ($) => /0[oO][0-7_]+/, - _binary: ($) => /0[bB][0-1_]+/, - _bit_string_segment_option: ($) => - choice( - "binary", - "bytes", - "int", - "float", - "bit_string", - "bits", - "utf8", - "utf16", - "utf32", - "utf8_codepoint", - "utf16_codepoint", - "utf32_codepoint", - "signed", - "unsigned", - "big", - "little", - "native", - seq("unit", "(", $.integer, ")") - ), - - /* Types */ - _type: ($) => - choice($.type_hole, $.tuple_type, $.function_type, $.type, $.type_var), - _type_annotation: ($) => seq(":", field("type", $._type)), - type_hole: ($) => $._discard_name, - // If you're wondering why there isn't a `list_type` here, the answer is - // that the "type" form for lists is `List`, which is identical to - // user-defined types etc and thus is not parsed specially. - tuple_type: ($) => seq("#", "(", optional(series_of($._type, ",")), ")"), - function_type: ($) => - seq( - "fn", - optional(field("parameter_types", $.function_parameter_types)), - "->", - field("return_type", $._type) - ), - function_parameter_types: ($) => - seq("(", optional(series_of($._type, ",")), ")"), - // "type" is a somewhat ambiguous name, but it refers to a concrete type - // such as `Bool` or `List(Int)` or even `result.Result(#(Int, Int), Nil)`. - type: ($) => - seq( - field("name", choice($.type_identifier, $.remote_type_identifier)), - optional(field("arguments", $.type_arguments)) - ), - type_arguments: ($) => - seq("(", optional(series_of($.type_argument, ",")), ")"), - type_argument: ($) => $._type, - type_var: ($) => $._name, - - // "type_name" essentially refers to the declaration of a type. The type - // parameters are part of the "name." Bit odd, but 🀷 - // e.g. MyType(a, b) - type_name: ($) => - seq( - field("name", choice($.type_identifier, $.remote_type_identifier)), - optional(field("parameters", $.type_parameters)) - ), - type_parameters: ($) => - seq("(", optional(series_of($.type_parameter, ",")), ")"), - type_parameter: ($) => $._name, - - /* Shared AST nodes */ - identifier: ($) => $._name, - label: ($) => $._name, - discard: ($) => $._discard_name, - type_identifier: ($) => $._upname, - remote_type_identifier: ($) => - seq(field("module", $.identifier), ".", field("name", $.type_identifier)), - constructor_name: ($) => $._upname, - remote_constructor_name: ($) => - seq( - field("module", $.identifier), - ".", - field("name", $.constructor_name) - ), - - /* Reused types from the Gleam lexer */ - _discard_name: ($) => /_[_0-9a-z]*/, - _name: ($) => /[_a-z][_0-9a-z]*/, - _upname: ($) => /[A-Z][0-9a-zA-Z]*/, - }, -}); - -// This function and the following function are vaguely congruent with the -// `parse_bit_string_segment` function of the Gleam parser. -function bit_string_rules(name, value_parser, arg_parser) { - return { - [`_${name}_bit_string`]: ($) => - seq( - "<<", - optional( - series_of( - alias($[`${name}_bit_string_segment`], $.bit_string_segment), - "," - ) - ), - ">>" - ), - [`${name}_bit_string_segment`]: ($) => - seq( - field("value", $[value_parser]), - optional( - field( - "options", - seq( - ":", - alias( - $[`${name}_bit_string_segment_options`], - $.bit_string_segment_options - ) - ) - ) - ) - ), - ...bit_string_segment_options(name, arg_parser), - }; -} - -function bit_string_segment_options(name, arg_parser) { - return { - [`${name}_bit_string_segment_options`]: ($) => - series_of($[`_${name}_bit_string_segment_option`], "-"), - [`_${name}_bit_string_segment_option`]: ($) => - choice($[`_${name}_bit_string_named_segment_option`], $.integer), - [`_${name}_bit_string_named_segment_option`]: ($) => - alias( - choice( - $._bit_string_segment_option, - $[`_${name}_bit_string_segment_option_size`] - ), - $.bit_string_segment_option - ), - [`_${name}_bit_string_segment_option_size`]: ($) => - seq("size", "(", $[arg_parser], ")"), - }; -} - -// Shamelessly stolen "sep1" from tree-sitter-elixir, renamed to match a similar -// function in the Gleam parser. -// https://github.com/elixir-lang/tree-sitter-elixir/blob/de3ec57591aebf451e710fc9c984cf601258baf5/grammar.js#L817-L819 -function series_of(rule, separator) { - return seq(rule, repeat(seq(separator, rule)), optional(separator)); -} - -// A binary expression with a left-hand side, infix operator, and then right-hand-side -// https://github.com/elixir-lang/tree-sitter-elixir/blob/de20391afe5cb03ef1e8a8e43167e7b58cc52869/grammar.js#L850-L859 -function binaryExpr(assoc, precedence, operator, left, right = null) { - return assoc( - precedence, - seq( - field("left", left), - field("operator", operator), - field("right", right || left) - ) - ); -} diff --git a/vendored_parsers/tree-sitter-gleam/package-lock.json b/vendored_parsers/tree-sitter-gleam/package-lock.json deleted file mode 100644 index 39ff7ee51..000000000 --- a/vendored_parsers/tree-sitter-gleam/package-lock.json +++ /dev/null @@ -1,2124 +0,0 @@ -{ - "name": "tree-sitter-gleam", - "version": "1.0.0", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "name": "tree-sitter-gleam", - "version": "1.0.0", - "license": "Apache-2.0", - "dependencies": { - "nan": "^2.18.0" - }, - "devDependencies": { - "node-gyp": "^10.0.1", - "prettier": "^2.5.1", - "tree-sitter-cli": "^0.20.6" - } - }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, - "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@npmcli/agent": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.0.tgz", - "integrity": "sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q==", - "dev": true, - "dependencies": { - "agent-base": "^7.1.0", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.1", - "lru-cache": "^10.0.1", - "socks-proxy-agent": "^8.0.1" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, - "node_modules/@npmcli/fs": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz", - "integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==", - "dev": true, - "dependencies": { - "semver": "^7.3.5" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/abbrev": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", - "integrity": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==", - "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", - "dev": true, - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/cacache": { - "version": "18.0.0", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.0.tgz", - "integrity": "sha512-I7mVOPl3PUCeRub1U8YoGz2Lqv9WOBpobZ8RyWFXmReuILz+3OAyTa5oH3QPdtKZD7N0Yk00aLfzn0qvp8dZ1w==", - "dev": true, - "dependencies": { - "@npmcli/fs": "^3.1.0", - "fs-minipass": "^3.0.0", - "glob": "^10.2.2", - "lru-cache": "^10.0.1", - "minipass": "^7.0.3", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "p-map": "^4.0.0", - "ssri": "^10.0.0", - "tar": "^6.1.11", - "unique-filename": "^3.0.0" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, - "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/cross-spawn/node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "node_modules/cross-spawn/node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true - }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "dev": true, - "optional": true, - "dependencies": { - "iconv-lite": "^0.6.2" - } - }, - "node_modules/env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "dev": true - }, - "node_modules/exponential-backoff": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz", - "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==", - "dev": true - }, - "node_modules/foreground-child": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/fs-minipass": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz", - "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==", - "dev": true, - "dependencies": { - "minipass": "^7.0.3" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", - "dev": true, - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true - }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true - }, - "node_modules/http-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", - "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", - "dev": true, - "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/https-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", - "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", - "dev": true, - "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "optional": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", - "dev": true - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", - "dev": true - }, - "node_modules/isexe": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", - "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", - "dev": true, - "engines": { - "node": ">=16" - } - }, - "node_modules/jackspeak": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", - "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", - "dev": true, - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" - } - }, - "node_modules/lru-cache": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz", - "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==", - "dev": true, - "engines": { - "node": "14 || >=16.14" - } - }, - "node_modules/make-fetch-happen": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-13.0.0.tgz", - "integrity": "sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==", - "dev": true, - "dependencies": { - "@npmcli/agent": "^2.0.0", - "cacache": "^18.0.0", - "http-cache-semantics": "^4.1.1", - "is-lambda": "^1.0.1", - "minipass": "^7.0.2", - "minipass-fetch": "^3.0.0", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "ssri": "^10.0.0" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, - "node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/minipass": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", - "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", - "dev": true, - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minipass-collect/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-fetch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.4.tgz", - "integrity": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==", - "dev": true, - "dependencies": { - "minipass": "^7.0.3", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - }, - "optionalDependencies": { - "encoding": "^0.1.13" - } - }, - "node_modules/minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minipass-flush/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-pipeline/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-sized/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minizlib/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/nan": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", - "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==" - }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/node-gyp": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-10.0.1.tgz", - "integrity": "sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==", - "dev": true, - "dependencies": { - "env-paths": "^2.2.0", - "exponential-backoff": "^3.1.1", - "glob": "^10.3.10", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^13.0.0", - "nopt": "^7.0.0", - "proc-log": "^3.0.0", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^4.0.0" - }, - "bin": { - "node-gyp": "bin/node-gyp.js" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, - "node_modules/nopt": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.0.tgz", - "integrity": "sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==", - "dev": true, - "dependencies": { - "abbrev": "^2.0.0" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-scurry": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", - "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", - "dev": true, - "dependencies": { - "lru-cache": "^9.1.1 || ^10.0.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/prettier": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz", - "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", - "dev": true, - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/proc-log": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", - "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", - "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/promise-retry": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", - "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", - "dev": true, - "dependencies": { - "err-code": "^2.0.2", - "retry": "^0.12.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true, - "optional": true - }, - "node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/semver/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true, - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", - "dev": true, - "dependencies": { - "ip": "^2.0.0", - "smart-buffer": "^4.2.0" - }, - "engines": { - "node": ">= 10.13.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/socks-proxy-agent": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", - "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", - "dev": true, - "dependencies": { - "agent-base": "^7.0.2", - "debug": "^4.3.4", - "socks": "^2.7.1" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/ssri": { - "version": "10.0.5", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz", - "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==", - "dev": true, - "dependencies": { - "minipass": "^7.0.3" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width-cjs/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width-cjs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/string-width-cjs/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/tar": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", - "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", - "dev": true, - "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/tar/node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/tar/node_modules/minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/tree-sitter-cli": { - "version": "0.20.6", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.6.tgz", - "integrity": "sha512-tjbAeuGSMhco/EnsThjWkQbDIYMDmdkWsTPsa/NJAW7bjaki9P7oM9TkLxfdlnm4LXd1wR5wVSM2/RTLtZbm6A==", - "dev": true, - "hasInstallScript": true, - "bin": { - "tree-sitter": "cli.js" - } - }, - "node_modules/unique-filename": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", - "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", - "dev": true, - "dependencies": { - "unique-slug": "^4.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/unique-slug": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", - "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/which": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", - "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", - "dev": true, - "dependencies": { - "isexe": "^3.1.1" - }, - "bin": { - "node-which": "bin/which.js" - }, - "engines": { - "node": "^16.13.0 || >=18.0.0" - } - }, - "node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/wrap-ansi-cjs/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - }, - "dependencies": { - "@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, - "requires": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - } - }, - "@npmcli/agent": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.0.tgz", - "integrity": "sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q==", - "dev": true, - "requires": { - "agent-base": "^7.1.0", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.1", - "lru-cache": "^10.0.1", - "socks-proxy-agent": "^8.0.1" - } - }, - "@npmcli/fs": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz", - "integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==", - "dev": true, - "requires": { - "semver": "^7.3.5" - } - }, - "@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, - "optional": true - }, - "abbrev": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", - "integrity": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==", - "dev": true - }, - "agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", - "dev": true, - "requires": { - "debug": "^4.3.4" - } - }, - "aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - } - }, - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true - }, - "ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "cacache": { - "version": "18.0.0", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.0.tgz", - "integrity": "sha512-I7mVOPl3PUCeRub1U8YoGz2Lqv9WOBpobZ8RyWFXmReuILz+3OAyTa5oH3QPdtKZD7N0Yk00aLfzn0qvp8dZ1w==", - "dev": true, - "requires": { - "@npmcli/fs": "^3.1.0", - "fs-minipass": "^3.0.0", - "glob": "^10.2.2", - "lru-cache": "^10.0.1", - "minipass": "^7.0.3", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "p-map": "^4.0.0", - "ssri": "^10.0.0", - "tar": "^6.1.11", - "unique-filename": "^3.0.0" - } - }, - "chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true - }, - "clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "dependencies": { - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "dev": true, - "optional": true, - "requires": { - "iconv-lite": "^0.6.2" - } - }, - "env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "dev": true - }, - "err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "dev": true - }, - "exponential-backoff": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz", - "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==", - "dev": true - }, - "foreground-child": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - } - }, - "fs-minipass": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz", - "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==", - "dev": true, - "requires": { - "minipass": "^7.0.3" - } - }, - "glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", - "dev": true, - "requires": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" - } - }, - "graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true - }, - "http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true - }, - "http-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", - "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", - "dev": true, - "requires": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" - } - }, - "https-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", - "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", - "dev": true, - "requires": { - "agent-base": "^7.0.2", - "debug": "4" - } - }, - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "optional": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true - }, - "indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true - }, - "ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", - "dev": true - }, - "isexe": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", - "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", - "dev": true - }, - "jackspeak": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", - "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", - "dev": true, - "requires": { - "@isaacs/cliui": "^8.0.2", - "@pkgjs/parseargs": "^0.11.0" - } - }, - "lru-cache": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz", - "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==", - "dev": true - }, - "make-fetch-happen": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-13.0.0.tgz", - "integrity": "sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==", - "dev": true, - "requires": { - "@npmcli/agent": "^2.0.0", - "cacache": "^18.0.0", - "http-cache-semantics": "^4.1.1", - "is-lambda": "^1.0.1", - "minipass": "^7.0.2", - "minipass-fetch": "^3.0.0", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "ssri": "^10.0.0" - } - }, - "minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - }, - "minipass": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", - "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", - "dev": true - }, - "minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "minipass-fetch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.4.tgz", - "integrity": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==", - "dev": true, - "requires": { - "encoding": "^0.1.13", - "minipass": "^7.0.3", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" - } - }, - "minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, - "requires": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "nan": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", - "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==" - }, - "negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true - }, - "node-gyp": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-10.0.1.tgz", - "integrity": "sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==", - "dev": true, - "requires": { - "env-paths": "^2.2.0", - "exponential-backoff": "^3.1.1", - "glob": "^10.3.10", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^13.0.0", - "nopt": "^7.0.0", - "proc-log": "^3.0.0", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^4.0.0" - } - }, - "nopt": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.0.tgz", - "integrity": "sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==", - "dev": true, - "requires": { - "abbrev": "^2.0.0" - } - }, - "p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "requires": { - "aggregate-error": "^3.0.0" - } - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true - }, - "path-scurry": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", - "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", - "dev": true, - "requires": { - "lru-cache": "^9.1.1 || ^10.0.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - } - }, - "prettier": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz", - "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", - "dev": true - }, - "proc-log": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", - "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", - "dev": true - }, - "promise-retry": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", - "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", - "dev": true, - "requires": { - "err-code": "^2.0.2", - "retry": "^0.12.0" - } - }, - "retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", - "dev": true - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true, - "optional": true - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, - "signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true - }, - "smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true - }, - "socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", - "dev": true, - "requires": { - "ip": "^2.0.0", - "smart-buffer": "^4.2.0" - } - }, - "socks-proxy-agent": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", - "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", - "dev": true, - "requires": { - "agent-base": "^7.0.2", - "debug": "^4.3.4", - "socks": "^2.7.1" - } - }, - "ssri": { - "version": "10.0.5", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz", - "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==", - "dev": true, - "requires": { - "minipass": "^7.0.3" - } - }, - "string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - }, - "string-width-cjs": { - "version": "npm:string-width@4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - } - } - }, - "strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "requires": { - "ansi-regex": "^6.0.1" - } - }, - "strip-ansi-cjs": { - "version": "npm:strip-ansi@6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - } - } - }, - "tar": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", - "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", - "dev": true, - "requires": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "dependencies": { - "fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - "dev": true - } - } - }, - "tree-sitter-cli": { - "version": "0.20.6", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.6.tgz", - "integrity": "sha512-tjbAeuGSMhco/EnsThjWkQbDIYMDmdkWsTPsa/NJAW7bjaki9P7oM9TkLxfdlnm4LXd1wR5wVSM2/RTLtZbm6A==", - "dev": true - }, - "unique-filename": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", - "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", - "dev": true, - "requires": { - "unique-slug": "^4.0.0" - } - }, - "unique-slug": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", - "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4" - } - }, - "which": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", - "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", - "dev": true, - "requires": { - "isexe": "^3.1.1" - } - }, - "wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "requires": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - } - }, - "wrap-ansi-cjs": { - "version": "npm:wrap-ansi@7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - } - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } -} diff --git a/vendored_parsers/tree-sitter-gleam/package.json b/vendored_parsers/tree-sitter-gleam/package.json deleted file mode 100644 index a7b9ea1e6..000000000 --- a/vendored_parsers/tree-sitter-gleam/package.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "name": "tree-sitter-gleam", - "version": "1.0.0", - "description": "A tree-sitter grammar for the Gleam programming language", - "main": "bindings/node", - "scripts": { - "generate": "tree-sitter generate", - "test": "tree-sitter test", - "format": "prettier --write grammar.js", - "check-formatted": "prettier --check grammar.js", - "build-wasm": "tree-sitter build-wasm" - }, - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/J3RN/tree-sitter-gleam.git" - }, - "keywords": [ - "gleam", - "parser", - "lexer", - "tree-sitter" - ], - "author": "Jonathan Arnett", - "license": "Apache-2.0", - "bugs": { - "url": "https://github.com/J3RN/tree-sitter-gleam/issues" - }, - "homepage": "https://github.com/J3RN/tree-sitter-gleam#readme", - "dependencies": { - "nan": "^2.18.0" - }, - "devDependencies": { - "prettier": "^2.5.1", - "tree-sitter-cli": "^0.20.6", - "node-gyp": "^10.0.1" - }, - "tree-sitter": [ - { - "scope": "source.gleam", - "file-types": [ - "gleam" - ], - "injection-regex": "^gleam$" - } - ] -} diff --git a/vendored_parsers/tree-sitter-gleam/queries/highlights.scm b/vendored_parsers/tree-sitter-gleam/queries/highlights.scm deleted file mode 100644 index 4fb28eb25..000000000 --- a/vendored_parsers/tree-sitter-gleam/queries/highlights.scm +++ /dev/null @@ -1,131 +0,0 @@ -; Comments -(module_comment) @comment -(statement_comment) @comment -(comment) @comment - -; Constants -(constant - name: (identifier) @constant) - -; Modules -(module) @module -(import alias: (identifier) @module) -(remote_type_identifier - module: (identifier) @module) -(remote_constructor_name - module: (identifier) @module) -((field_access - record: (identifier) @module - field: (label) @function) - (#is-not? local)) - -; Functions -(unqualified_import (identifier) @function) -(unqualified_import "type" (type_identifier) @type) -(unqualified_import (type_identifier) @constructor) -(function - name: (identifier) @function) -(external_function - name: (identifier) @function) -(function_parameter - name: (identifier) @variable.parameter) -((function_call - function: (identifier) @function) - (#is-not? local)) -((binary_expression - operator: "|>" - right: (identifier) @function) - (#is-not? local)) - -; "Properties" -; Assumed to be intended to refer to a name for a field; something that comes -; before ":" or after "." -; e.g. record field names, tuple indices, names for named arguments, etc -(label) @property -(tuple_access - index: (integer) @property) - -; Attributes -(attribute - "@" @attribute - name: (identifier) @attribute) - -(attribute_value (identifier) @constant) - -; Type names -(remote_type_identifier) @type -(type_identifier) @type - -; Data constructors -(constructor_name) @constructor - -; Literals -(string) @string -((escape_sequence) @warning - ; Deprecated in v0.33.0-rc2: - (#eq? @warning "\\e")) -(escape_sequence) @string.escape -(bit_string_segment_option) @function.builtin -(integer) @number -(float) @number - -; Reserved identifiers -; TODO: when tree-sitter supports `#any-of?` in the Rust bindings, -; refactor this to use `#any-of?` rather than `#match?` -((identifier) @error - (#match? @error "^(auto|delegate|derive|else|implement|macro|test)$")) - -; Variables -(identifier) @variable -(discard) @comment.unused - -; Keywords -[ - (visibility_modifier) ; "pub" - (opacity_modifier) ; "opaque" - "as" - "assert" - "case" - "const" - "echo" - ; DEPRECATED: 'external' was removed in v0.30. - "external" - "fn" - "if" - "import" - "let" - "panic" - "todo" - "type" - "use" -] @keyword - -; Operators -(binary_expression - operator: _ @operator) -(boolean_negation "!" @operator) -(integer_negation "-" @operator) - -; Punctuation -[ - "(" - ")" - "[" - "]" - "{" - "}" - "<<" - ">>" -] @punctuation.bracket -[ - "." - "," - ;; Controversial -- maybe some are operators? - ":" - "#" - "=" - "->" - ".." - "-" - "<-" -] @punctuation.delimiter diff --git a/vendored_parsers/tree-sitter-gleam/queries/locals.scm b/vendored_parsers/tree-sitter-gleam/queries/locals.scm deleted file mode 100644 index c8191697a..000000000 --- a/vendored_parsers/tree-sitter-gleam/queries/locals.scm +++ /dev/null @@ -1,17 +0,0 @@ -; Scopes -(block) @local.scope - -(function) @local.scope - -(case_clause) @local.scope - -; Definitions -(let pattern: (identifier) @local.definition) -(function_parameter name: (identifier) @local.definition) -(list_pattern (identifier) @local.definition) -(list_pattern assign: (identifier) @local.definition) -(tuple_pattern (identifier) @local.definition) -(record_pattern_argument pattern: (identifier) @local.definition) - -; References -(identifier) @local.reference diff --git a/vendored_parsers/tree-sitter-gleam/queries/tags.scm b/vendored_parsers/tree-sitter-gleam/queries/tags.scm deleted file mode 100644 index cfca227c0..000000000 --- a/vendored_parsers/tree-sitter-gleam/queries/tags.scm +++ /dev/null @@ -1,41 +0,0 @@ -; Modules -(module) @name @reference.module -(import alias: (identifier) @name) @reference.module -(remote_type_identifier - module: (identifier) @name) @reference.module -((field_access - record: (identifier) @name) - (#is-not? local)) @reference.module - -; Functions -(function - name: (identifier) @name) @definition.function -(external_function - name: (identifier) @name) @definition.function -(unqualified_import (identifier) @name) @reference.function -((function_call - function: (identifier) @name) @reference.function - (#is-not? local)) -((field_access - record: (identifier) @ignore - field: (label) @name) - (#is-not? local)) @reference.function -((binary_expression - operator: "|>" - right: (identifier) @name) - (#is-not? local)) @reference.function - -; Types -(type_definition - (type_name - name: (type_identifier) @name)) @definition.type -(type_definition - (data_constructors - (data_constructor - name: (constructor_name) @name))) @definition.constructor -(external_type - (type_name - name: (type_identifier) @name)) @definition.type - -(type_identifier) @name @reference.type -(constructor_name) @name @reference.constructor diff --git a/vendored_parsers/tree-sitter-gleam/scripts/integration_test.sh b/vendored_parsers/tree-sitter-gleam/scripts/integration_test.sh deleted file mode 100755 index aa823464e..000000000 --- a/vendored_parsers/tree-sitter-gleam/scripts/integration_test.sh +++ /dev/null @@ -1,24 +0,0 @@ -#! /usr/bin/env bash - -set -e - -cd "$(dirname "$0")/.." - -usage() { - echo "$0" - echo "" - echo "Tests that the parser does not create error nodes" - echo "when tested against real Gleam repos" - echo "" - exit 1 -} - -if [ $# -ne 0 ]; then - usage -fi - -repos="gleam-lang/stdlib gleam-lang/json gleam-lang/http gleam-lang/example-todomvc gleam-lang/bitwise gleam-lang/erlang gleam-lang/otp gleam-lang/cowboy gleam-lang/hackney gleam-lang/httpc gleam-lang/elli gleam-lang/javascript gleam-lang/example-echo-server gleam-lang/plug" - -for repo in $repos; do - ./scripts/parse_repo.sh $repo -done diff --git a/vendored_parsers/tree-sitter-gleam/scripts/parse_repo.sh b/vendored_parsers/tree-sitter-gleam/scripts/parse_repo.sh deleted file mode 100755 index fad3d2786..000000000 --- a/vendored_parsers/tree-sitter-gleam/scripts/parse_repo.sh +++ /dev/null @@ -1,29 +0,0 @@ -#! /usr/bin/env bash - -set -e - -cd "$(dirname "$0")/.." - -usage() { - echo "$0 owner/repository" - echo "" - echo "Runs the parser against Gleam files in a GitHub repository" - echo "" - exit 1 -} - -if [ $# -ne 1 ]; then - usage -fi - -gh_repo="$1" -dir="test/integration/${gh_repo//[\/-]/_}" - -if [[ ! -d "$dir" ]]; then - mkdir -p "$(dirname "$dir")" - git clone --depth 1 "https://github.com/$gh_repo.git" "$dir" -fi - -echo "Running parser against $gh_repo" - -npx tree-sitter parse --quiet --stat "$dir/**/*.gleam" diff --git a/vendored_parsers/tree-sitter-gleam/src/grammar.json b/vendored_parsers/tree-sitter-gleam/src/grammar.json deleted file mode 100644 index fec220814..000000000 --- a/vendored_parsers/tree-sitter-gleam/src/grammar.json +++ /dev/null @@ -1,7054 +0,0 @@ -{ - "name": "gleam", - "rules": { - "source_file": { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "target_group" - }, - { - "type": "SYMBOL", - "name": "_module_statement" - }, - { - "type": "SYMBOL", - "name": "_statement_seq" - } - ] - } - }, - "_module_statement": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "import" - }, - { - "type": "SYMBOL", - "name": "constant" - }, - { - "type": "SYMBOL", - "name": "external_type" - }, - { - "type": "SYMBOL", - "name": "external_function" - }, - { - "type": "SYMBOL", - "name": "function" - }, - { - "type": "SYMBOL", - "name": "type_definition" - }, - { - "type": "SYMBOL", - "name": "type_alias" - }, - { - "type": "SYMBOL", - "name": "attribute" - } - ] - }, - "module_comment": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "////" - }, - { - "type": "PATTERN", - "value": ".*" - } - ] - } - }, - "statement_comment": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "///" - }, - { - "type": "PATTERN", - "value": ".*" - } - ] - } - }, - "comment": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "//" - }, - { - "type": "PATTERN", - "value": ".*" - } - ] - } - }, - "target_group": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "if" - }, - { - "type": "FIELD", - "name": "target", - "content": { - "type": "SYMBOL", - "name": "target" - } - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_module_statement" - } - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "target": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "erlang" - }, - { - "type": "STRING", - "value": "javascript" - } - ] - }, - "attribute": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "@" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_attribute_arguments" - }, - "named": true, - "value": "arguments" - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_attribute_arguments": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "attribute_value" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "attribute_value" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "attribute_value": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_constant_value" - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "label", - "content": { - "type": "SYMBOL", - "name": "label" - } - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_constant_value" - } - } - ] - } - ] - }, - "import": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "import" - }, - { - "type": "FIELD", - "name": "module", - "content": { - "type": "SYMBOL", - "name": "module" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "FIELD", - "name": "imports", - "content": { - "type": "SYMBOL", - "name": "unqualified_imports" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "as" - }, - { - "type": "FIELD", - "name": "alias", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "discard" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "module": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_name" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "/" - }, - { - "type": "SYMBOL", - "name": "_name" - } - ] - } - } - ] - }, - "unqualified_imports": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "unqualified_import" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "unqualified_import" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "unqualified_import": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "as" - }, - { - "type": "FIELD", - "name": "alias", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "type" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "type_identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "as" - }, - { - "type": "FIELD", - "name": "alias", - "content": { - "type": "SYMBOL", - "name": "type_identifier" - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "constructor_name" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "as" - }, - { - "type": "FIELD", - "name": "alias", - "content": { - "type": "SYMBOL", - "name": "constructor_name" - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - "constant": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "visibility_modifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "const" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_constant_type_annotation" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_constant_value" - } - } - ] - }, - "_constant_value": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "string" - }, - { - "type": "SYMBOL", - "name": "float" - }, - { - "type": "SYMBOL", - "name": "integer" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constant_tuple" - }, - "named": true, - "value": "tuple" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constant_list" - }, - "named": true, - "value": "list" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_constant_bit_string" - }, - "named": true, - "value": "bit_string" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constant_record" - }, - "named": true, - "value": "record" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constant_field_access" - }, - "named": true, - "value": "field_access" - } - ] - }, - "constant_tuple": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "#" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_constant_value" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_constant_value" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "constant_list": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_constant_value" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_constant_value" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "_constant_bit_string": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "<<" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constant_bit_string_segment" - }, - "named": true, - "value": "bit_string_segment" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constant_bit_string_segment" - }, - "named": true, - "value": "bit_string_segment" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ">>" - } - ] - }, - "constant_bit_string_segment": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_constant_value" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "options", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constant_bit_string_segment_options" - }, - "named": true, - "value": "bit_string_segment_options" - } - ] - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "constant_bit_string_segment_options": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_constant_bit_string_segment_option" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "SYMBOL", - "name": "_constant_bit_string_segment_option" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_constant_bit_string_segment_option": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_constant_bit_string_named_segment_option" - }, - { - "type": "SYMBOL", - "name": "integer" - } - ] - }, - "_constant_bit_string_named_segment_option": { - "type": "ALIAS", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_bit_string_segment_option" - }, - { - "type": "SYMBOL", - "name": "_constant_bit_string_segment_option_size" - } - ] - }, - "named": true, - "value": "bit_string_segment_option" - }, - "_constant_bit_string_segment_option_size": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "size" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "integer" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "constant_record": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "constructor_name" - }, - { - "type": "SYMBOL", - "name": "remote_constructor_name" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constant_record_arguments" - }, - "named": true, - "value": "arguments" - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "constant_record_arguments": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constant_record_argument" - }, - "named": true, - "value": "argument" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constant_record_argument" - }, - "named": true, - "value": "argument" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "constant_record_argument": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "label", - "content": { - "type": "SYMBOL", - "name": "label" - } - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_constant_value" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "label", - "content": { - "type": "SYMBOL", - "name": "label" - } - }, - { - "type": "STRING", - "value": ":" - } - ] - } - ] - }, - "constant_field_access": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "record", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "FIELD", - "name": "field", - "content": { - "type": "SYMBOL", - "name": "label" - } - } - ] - }, - "_constant_type": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_hole" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constant_tuple_type" - }, - "named": true, - "value": "tuple_type" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constant_function_type" - }, - "named": true, - "value": "function_type" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constant_type" - }, - "named": true, - "value": "type" - } - ] - }, - "_constant_type_annotation": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "_constant_type" - } - } - ] - }, - "constant_tuple_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "#" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_constant_type" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_constant_type" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "constant_function_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "fn" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "parameter_types", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constant_function_parameter_types" - }, - "named": true, - "value": "function_parameter_types" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "->" - }, - { - "type": "FIELD", - "name": "return_type", - "content": { - "type": "SYMBOL", - "name": "_constant_type" - } - } - ] - }, - "constant_function_parameter_types": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_constant_type" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_constant_type" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "constant_type": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_identifier" - }, - { - "type": "SYMBOL", - "name": "remote_type_identifier" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constant_type_arguments" - }, - "named": true, - "value": "type_arguments" - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "constant_type_arguments": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constant_type_argument" - }, - "named": true, - "value": "type_argument" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constant_type_argument" - }, - "named": true, - "value": "type_argument" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "constant_type_argument": { - "type": "SYMBOL", - "name": "_constant_type" - }, - "external_type": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "visibility_modifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "external" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "type" - }, - { - "type": "SYMBOL", - "name": "type_name" - } - ] - } - }, - "external_function": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "visibility_modifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "external" - }, - { - "type": "STRING", - "value": "fn" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "FIELD", - "name": "parameters", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "external_function_parameters" - }, - "named": true, - "value": "function_parameters" - } - }, - { - "type": "STRING", - "value": "->" - }, - { - "type": "FIELD", - "name": "return_type", - "content": { - "type": "SYMBOL", - "name": "_type" - } - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "external_function_body" - } - } - ] - }, - "external_function_parameters": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "external_function_parameter" - }, - "named": true, - "value": "function_parameter" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "external_function_parameter" - }, - "named": true, - "value": "function_parameter" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "external_function_parameter": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "_type" - } - } - ] - }, - "external_function_body": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "string" - }, - { - "type": "SYMBOL", - "name": "string" - } - ] - }, - "function": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "visibility_modifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "fn" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "FIELD", - "name": "parameters", - "content": { - "type": "SYMBOL", - "name": "function_parameters" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "->" - }, - { - "type": "FIELD", - "name": "return_type", - "content": { - "type": "SYMBOL", - "name": "_type" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "block" - } - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "function_parameters": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "function_parameter" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "function_parameter" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "function_parameter": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_labeled_discard_param" - }, - { - "type": "SYMBOL", - "name": "_discard_param" - }, - { - "type": "SYMBOL", - "name": "_labeled_name_param" - }, - { - "type": "SYMBOL", - "name": "_name_param" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_annotation" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_labeled_discard_param": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "label", - "content": { - "type": "SYMBOL", - "name": "label" - } - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "discard" - } - } - ] - }, - "_discard_param": { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "discard" - } - }, - "_labeled_name_param": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "label", - "content": { - "type": "SYMBOL", - "name": "label" - } - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - } - ] - }, - "_name_param": { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - "_statement_seq": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_statement" - } - }, - "_statement": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "let" - }, - { - "type": "SYMBOL", - "name": "let_assert" - }, - { - "type": "SYMBOL", - "name": "use" - }, - { - "type": "SYMBOL", - "name": "assert" - } - ] - }, - "_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression_unit" - }, - { - "type": "SYMBOL", - "name": "binary_expression" - } - ] - }, - "binary_expression": { - "type": "CHOICE", - "members": [ - { - "type": "PREC_LEFT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "||" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "&&" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "==" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "!=" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<=" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<." - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<=." - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": ">" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": ">=" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": ">." - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": ">=." - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 5, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "|>" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "pipeline_echo" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "+" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "+." - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "-" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "-." - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "*" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "*." - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "/" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "/." - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "%" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<>" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - } - ] - }, - "_expression_unit": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "string" - }, - { - "type": "SYMBOL", - "name": "integer" - }, - { - "type": "SYMBOL", - "name": "float" - }, - { - "type": "SYMBOL", - "name": "record" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "todo" - }, - { - "type": "SYMBOL", - "name": "panic" - }, - { - "type": "SYMBOL", - "name": "tuple" - }, - { - "type": "SYMBOL", - "name": "echo" - }, - { - "type": "SYMBOL", - "name": "list" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_expression_bit_string" - }, - "named": true, - "value": "bit_string" - }, - { - "type": "SYMBOL", - "name": "anonymous_function" - }, - { - "type": "SYMBOL", - "name": "block" - }, - { - "type": "SYMBOL", - "name": "case" - }, - { - "type": "SYMBOL", - "name": "boolean_negation" - }, - { - "type": "SYMBOL", - "name": "integer_negation" - }, - { - "type": "SYMBOL", - "name": "record_update" - }, - { - "type": "SYMBOL", - "name": "tuple_access" - }, - { - "type": "SYMBOL", - "name": "field_access" - }, - { - "type": "SYMBOL", - "name": "function_call" - } - ] - }, - "record": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "constructor_name" - }, - { - "type": "SYMBOL", - "name": "remote_constructor_name" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "arguments" - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "todo": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "todo" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "FIELD", - "name": "message", - "content": { - "type": "SYMBOL", - "name": "string" - } - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "as" - }, - { - "type": "FIELD", - "name": "message", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "panic": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "panic" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "FIELD", - "name": "message", - "content": { - "type": "SYMBOL", - "name": "string" - } - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "as" - }, - { - "type": "FIELD", - "name": "message", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "pipeline_echo": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "STRING", - "value": "echo" - } - }, - "echo": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "echo" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - }, - "tuple": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "#" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "list": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "FIELD", - "name": "spread", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "_expression_bit_string": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "<<" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "expression_bit_string_segment" - }, - "named": true, - "value": "bit_string_segment" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "expression_bit_string_segment" - }, - "named": true, - "value": "bit_string_segment" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ">>" - } - ] - }, - "expression_bit_string_segment": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression_unit" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "options", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "expression_bit_string_segment_options" - }, - "named": true, - "value": "bit_string_segment_options" - } - ] - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "expression_bit_string_segment_options": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression_bit_string_segment_option" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "SYMBOL", - "name": "_expression_bit_string_segment_option" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_expression_bit_string_segment_option": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression_bit_string_named_segment_option" - }, - { - "type": "SYMBOL", - "name": "integer" - } - ] - }, - "_expression_bit_string_named_segment_option": { - "type": "ALIAS", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_bit_string_segment_option" - }, - { - "type": "SYMBOL", - "name": "_expression_bit_string_segment_option_size" - } - ] - }, - "named": true, - "value": "bit_string_segment_option" - }, - "_expression_bit_string_segment_option_size": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "size" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "anonymous_function": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "fn" - }, - { - "type": "FIELD", - "name": "parameters", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "anonymous_function_parameters" - }, - "named": true, - "value": "function_parameters" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "->" - }, - { - "type": "FIELD", - "name": "return_type", - "content": { - "type": "SYMBOL", - "name": "_type" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "block" - } - } - ] - }, - "anonymous_function_parameters": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "anonymous_function_parameter" - }, - "named": true, - "value": "function_parameter" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "anonymous_function_parameter" - }, - "named": true, - "value": "function_parameter" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "anonymous_function_parameter": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_discard_param" - }, - { - "type": "SYMBOL", - "name": "_name_param" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_annotation" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "block": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_statement_seq" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "case": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "case" - }, - { - "type": "FIELD", - "name": "subjects", - "content": { - "type": "SYMBOL", - "name": "case_subjects" - } - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "clauses", - "content": { - "type": "SYMBOL", - "name": "case_clauses" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "case_subjects": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - "case_clauses": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "case_clause" - } - }, - "case_clause": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "patterns", - "content": { - "type": "SYMBOL", - "name": "case_clause_patterns" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "guard", - "content": { - "type": "SYMBOL", - "name": "case_clause_guard" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "->" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - "case_clause_patterns": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "case_clause_pattern" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "case_clause_pattern" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - "case_clause_pattern": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_pattern" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "case_clause_guard": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "if" - }, - { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - ] - }, - "_case_clause_guard_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_case_clause_guard_unit" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_binary_expression" - }, - "named": true, - "value": "binary_expression" - }, - { - "type": "SYMBOL", - "name": "boolean_negation" - } - ] - }, - "_case_clause_guard_binary_expression": { - "type": "CHOICE", - "members": [ - { - "type": "PREC_LEFT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "||" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "&&" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "==" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "!=" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<=" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<." - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<=." - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": ">" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": ">=" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": ">." - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": ">=." - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 5, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "+" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 5, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "+." - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 5, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "-" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 5, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "-." - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "*" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "*." - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "/" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "/." - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "%" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - } - ] - } - } - ] - }, - "_case_clause_guard_unit": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "PREC", - "value": 1, - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_case_clause_tuple_access" - }, - "named": true, - "value": "tuple_access" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - { - "type": "SYMBOL", - "name": "_constant_value" - } - ] - }, - "_case_clause_tuple_access": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "tuple", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "FIELD", - "name": "index", - "content": { - "type": "SYMBOL", - "name": "integer" - } - } - ] - }, - "let_assert": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "STRING", - "value": "assert" - }, - { - "type": "SYMBOL", - "name": "_assignment" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "as" - }, - { - "type": "FIELD", - "name": "message", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "assert": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "assert" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "as" - }, - { - "type": "FIELD", - "name": "message", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "let": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "SYMBOL", - "name": "_assignment" - } - ] - }, - "use": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "use" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "assignments", - "content": { - "type": "SYMBOL", - "name": "use_assignments" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "<-" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - "use_assignments": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "use_assignment" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "use_assignment" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "use_assignment": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_annotation" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "boolean_negation": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "SYMBOL", - "name": "_expression_unit" - } - ] - }, - "integer_negation": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "SYMBOL", - "name": "_expression_unit" - } - ] - }, - "_assignment": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_pattern" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_annotation" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - "record_update": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "constructor", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "constructor_name" - }, - { - "type": "SYMBOL", - "name": "remote_constructor_name" - } - ] - } - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "STRING", - "value": ".." - }, - { - "type": "FIELD", - "name": "spread", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "record_update_arguments" - } - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "record_update_arguments": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "record_update_argument" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "record_update_argument" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "record_update_argument": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "label", - "content": { - "type": "SYMBOL", - "name": "label" - } - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "label", - "content": { - "type": "SYMBOL", - "name": "label" - } - }, - { - "type": "STRING", - "value": ":" - } - ] - } - ] - }, - "_maybe_tuple_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "function_call" - }, - { - "type": "SYMBOL", - "name": "tuple" - }, - { - "type": "SYMBOL", - "name": "block" - }, - { - "type": "SYMBOL", - "name": "case" - }, - { - "type": "SYMBOL", - "name": "field_access" - }, - { - "type": "SYMBOL", - "name": "tuple_access" - } - ] - }, - "tuple_access": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "tuple", - "content": { - "type": "SYMBOL", - "name": "_maybe_tuple_expression" - } - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "FIELD", - "name": "index", - "content": { - "type": "SYMBOL", - "name": "integer" - } - } - ] - } - }, - "_maybe_record_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "record" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "function_call" - }, - { - "type": "SYMBOL", - "name": "block" - }, - { - "type": "SYMBOL", - "name": "case" - }, - { - "type": "SYMBOL", - "name": "record_update" - }, - { - "type": "SYMBOL", - "name": "field_access" - }, - { - "type": "SYMBOL", - "name": "tuple_access" - } - ] - }, - "field_access": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "record", - "content": { - "type": "SYMBOL", - "name": "_maybe_record_expression" - } - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "FIELD", - "name": "field", - "content": { - "type": "SYMBOL", - "name": "label" - } - } - ] - } - }, - "_maybe_function_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "anonymous_function" - }, - { - "type": "SYMBOL", - "name": "block" - }, - { - "type": "SYMBOL", - "name": "case" - }, - { - "type": "SYMBOL", - "name": "tuple_access" - }, - { - "type": "SYMBOL", - "name": "field_access" - }, - { - "type": "SYMBOL", - "name": "function_call" - } - ] - }, - "arguments": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "argument" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "argument" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "argument": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "label", - "content": { - "type": "SYMBOL", - "name": "label" - } - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "hole" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "label", - "content": { - "type": "SYMBOL", - "name": "label" - } - }, - { - "type": "STRING", - "value": ":" - } - ] - } - ] - }, - "hole": { - "type": "SYMBOL", - "name": "_discard_name" - }, - "function_call": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "function", - "content": { - "type": "SYMBOL", - "name": "_maybe_function_expression" - } - }, - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "arguments" - } - } - ] - }, - "_pattern_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "discard" - }, - { - "type": "SYMBOL", - "name": "record_pattern" - }, - { - "type": "SYMBOL", - "name": "string" - }, - { - "type": "SYMBOL", - "name": "integer" - }, - { - "type": "SYMBOL", - "name": "float" - }, - { - "type": "SYMBOL", - "name": "tuple_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_pattern_bit_string" - }, - "named": true, - "value": "bit_string_pattern" - }, - { - "type": "SYMBOL", - "name": "list_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_pattern_binary_expression" - }, - "named": true, - "value": "binary_expression" - } - ] - }, - "_pattern_binary_expression": { - "type": "CHOICE", - "members": [ - { - "type": "PREC_LEFT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_pattern_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<>" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_pattern_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "string" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "as" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - } - ] - } - } - ] - }, - "_pattern": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "assign", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "as" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "record_pattern": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "constructor_name" - }, - { - "type": "SYMBOL", - "name": "remote_constructor_name" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "record_pattern_arguments" - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "record_pattern_arguments": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "record_pattern_argument" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "record_pattern_argument" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "pattern_spread" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "record_pattern_argument": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "label", - "content": { - "type": "SYMBOL", - "name": "label" - } - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_pattern" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "label", - "content": { - "type": "SYMBOL", - "name": "label" - } - }, - { - "type": "STRING", - "value": ":" - } - ] - } - ] - }, - "pattern_spread": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "tuple_pattern": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "#" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_pattern" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "_pattern_bit_string": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "<<" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "pattern_bit_string_segment" - }, - "named": true, - "value": "bit_string_segment" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "pattern_bit_string_segment" - }, - "named": true, - "value": "bit_string_segment" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ">>" - } - ] - }, - "pattern_bit_string_segment": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_pattern" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "options", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "pattern_bit_string_segment_options" - }, - "named": true, - "value": "bit_string_segment_options" - } - ] - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "pattern_bit_string_segment_options": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_bit_string_segment_option" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "SYMBOL", - "name": "_pattern_bit_string_segment_option" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_pattern_bit_string_segment_option": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_bit_string_named_segment_option" - }, - { - "type": "SYMBOL", - "name": "integer" - } - ] - }, - "_pattern_bit_string_named_segment_option": { - "type": "ALIAS", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_bit_string_segment_option" - }, - { - "type": "SYMBOL", - "name": "_pattern_bit_string_segment_option_size" - } - ] - }, - "named": true, - "value": "bit_string_segment_option" - }, - "_pattern_bit_string_segment_option_size": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "size" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_pattern_bit_string_segment_argument" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "_pattern_bit_string_segment_argument": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "integer" - } - ] - }, - "list_pattern": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_pattern" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "list_pattern_tail" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "list_pattern_tail": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "discard" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "visibility_modifier": { - "type": "STRING", - "value": "pub" - }, - "opacity_modifier": { - "type": "STRING", - "value": "opaque" - }, - "type_definition": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "visibility_modifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "opacity_modifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "type" - }, - { - "type": "SYMBOL", - "name": "type_name" - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "SYMBOL", - "name": "data_constructors" - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "data_constructors": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "data_constructor" - } - }, - "data_constructor": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "constructor_name" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "data_constructor_arguments" - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "data_constructor_arguments": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "data_constructor_argument" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "data_constructor_argument" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "data_constructor_argument": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "label", - "content": { - "type": "SYMBOL", - "name": "label" - } - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_type" - } - } - ] - }, - "type_alias": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "visibility_modifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "opacity_modifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "type" - }, - { - "type": "SYMBOL", - "name": "type_name" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "_type" - } - ] - }, - "string": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\"" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "escape_sequence" - }, - { - "type": "SYMBOL", - "name": "quoted_content" - } - ] - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "\"" - } - } - ] - }, - "escape_sequence": { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "\\\\[efnrt\\\"\\\\]" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "\\\\u\\{[0-9a-fA-F]{1,6}\\}" - } - } - ] - }, - "float": { - "type": "PATTERN", - "value": "-?[0-9_]+\\.[0-9_]*(e-?[0-9_]+)?" - }, - "integer": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_hex" - }, - { - "type": "SYMBOL", - "name": "_decimal" - }, - { - "type": "SYMBOL", - "name": "_octal" - }, - { - "type": "SYMBOL", - "name": "_binary" - } - ] - } - ] - }, - "_hex": { - "type": "PATTERN", - "value": "0[xX][0-9a-fA-F_]+" - }, - "_decimal": { - "type": "PATTERN", - "value": "[0-9][0-9_]*" - }, - "_octal": { - "type": "PATTERN", - "value": "0[oO][0-7_]+" - }, - "_binary": { - "type": "PATTERN", - "value": "0[bB][0-1_]+" - }, - "_bit_string_segment_option": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "binary" - }, - { - "type": "STRING", - "value": "bytes" - }, - { - "type": "STRING", - "value": "int" - }, - { - "type": "STRING", - "value": "float" - }, - { - "type": "STRING", - "value": "bit_string" - }, - { - "type": "STRING", - "value": "bits" - }, - { - "type": "STRING", - "value": "utf8" - }, - { - "type": "STRING", - "value": "utf16" - }, - { - "type": "STRING", - "value": "utf32" - }, - { - "type": "STRING", - "value": "utf8_codepoint" - }, - { - "type": "STRING", - "value": "utf16_codepoint" - }, - { - "type": "STRING", - "value": "utf32_codepoint" - }, - { - "type": "STRING", - "value": "signed" - }, - { - "type": "STRING", - "value": "unsigned" - }, - { - "type": "STRING", - "value": "big" - }, - { - "type": "STRING", - "value": "little" - }, - { - "type": "STRING", - "value": "native" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "unit" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "integer" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "_type": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_hole" - }, - { - "type": "SYMBOL", - "name": "tuple_type" - }, - { - "type": "SYMBOL", - "name": "function_type" - }, - { - "type": "SYMBOL", - "name": "type" - }, - { - "type": "SYMBOL", - "name": "type_var" - } - ] - }, - "_type_annotation": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "_type" - } - } - ] - }, - "type_hole": { - "type": "SYMBOL", - "name": "_discard_name" - }, - "tuple_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "#" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_type" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "function_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "fn" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "parameter_types", - "content": { - "type": "SYMBOL", - "name": "function_parameter_types" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "->" - }, - { - "type": "FIELD", - "name": "return_type", - "content": { - "type": "SYMBOL", - "name": "_type" - } - } - ] - }, - "function_parameter_types": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_type" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "type": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_identifier" - }, - { - "type": "SYMBOL", - "name": "remote_type_identifier" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "type_arguments" - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "type_arguments": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "type_argument" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "type_argument" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "type_argument": { - "type": "SYMBOL", - "name": "_type" - }, - "type_var": { - "type": "SYMBOL", - "name": "_name" - }, - "type_name": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_identifier" - }, - { - "type": "SYMBOL", - "name": "remote_type_identifier" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "parameters", - "content": { - "type": "SYMBOL", - "name": "type_parameters" - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "type_parameters": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "type_parameter" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "type_parameter" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "type_parameter": { - "type": "SYMBOL", - "name": "_name" - }, - "identifier": { - "type": "SYMBOL", - "name": "_name" - }, - "label": { - "type": "SYMBOL", - "name": "_name" - }, - "discard": { - "type": "SYMBOL", - "name": "_discard_name" - }, - "type_identifier": { - "type": "SYMBOL", - "name": "_upname" - }, - "remote_type_identifier": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "module", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "type_identifier" - } - } - ] - }, - "constructor_name": { - "type": "SYMBOL", - "name": "_upname" - }, - "remote_constructor_name": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "module", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "constructor_name" - } - } - ] - }, - "_discard_name": { - "type": "PATTERN", - "value": "_[_0-9a-z]*" - }, - "_name": { - "type": "PATTERN", - "value": "[_a-z][_0-9a-z]*" - }, - "_upname": { - "type": "PATTERN", - "value": "[A-Z][0-9a-zA-Z]*" - } - }, - "extras": [ - { - "type": "PATTERN", - "value": "\\r?\\n" - }, - { - "type": "PATTERN", - "value": "\\s" - }, - { - "type": "SYMBOL", - "name": "module_comment" - }, - { - "type": "SYMBOL", - "name": "statement_comment" - }, - { - "type": "SYMBOL", - "name": "comment" - } - ], - "conflicts": [ - [ - "_maybe_record_expression", - "_maybe_tuple_expression" - ], - [ - "_maybe_record_expression", - "_maybe_tuple_expression", - "remote_constructor_name" - ], - [ - "case_subjects" - ], - [ - "source_file" - ], - [ - "_constant_value", - "_case_clause_guard_unit" - ], - [ - "integer" - ], - [ - "echo" - ] - ], - "precedences": [], - "externals": [ - { - "type": "SYMBOL", - "name": "quoted_content" - } - ], - "inline": [], - "supertypes": [] -} - diff --git a/vendored_parsers/tree-sitter-gleam/src/node-types.json b/vendored_parsers/tree-sitter-gleam/src/node-types.json deleted file mode 100644 index fd79e8f33..000000000 --- a/vendored_parsers/tree-sitter-gleam/src/node-types.json +++ /dev/null @@ -1,5298 +0,0 @@ -[ - { - "type": "anonymous_function", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - }, - "parameters": { - "multiple": false, - "required": true, - "types": [ - { - "type": "function_parameters", - "named": true - } - ] - }, - "return_type": { - "multiple": false, - "required": false, - "types": [ - { - "type": "function_type", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type", - "named": true - }, - { - "type": "type_hole", - "named": true - }, - { - "type": "type_var", - "named": true - } - ] - } - } - }, - { - "type": "argument", - "named": true, - "fields": { - "label": { - "multiple": false, - "required": false, - "types": [ - { - "type": "label", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": false, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "hole", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - } - }, - { - "type": "arguments", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "argument", - "named": true - }, - { - "type": "attribute_value", - "named": true - } - ] - } - }, - { - "type": "assert", - "named": true, - "fields": { - "message": { - "multiple": false, - "required": false, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - } - }, - { - "type": "attribute", - "named": true, - "fields": { - "arguments": { - "multiple": false, - "required": false, - "types": [ - { - "type": "arguments", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - } - }, - { - "type": "attribute_value", - "named": true, - "fields": { - "label": { - "multiple": false, - "required": false, - "types": [ - { - "type": "label", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": false, - "types": [ - { - "type": "bit_string", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "tuple", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "bit_string", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "tuple", - "named": true - } - ] - } - }, - { - "type": "binary_expression", - "named": true, - "fields": { - "left": { - "multiple": true, - "required": true, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "bit_string_pattern", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "discard", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "list_pattern", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_pattern", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - }, - { - "type": "tuple_pattern", - "named": true - }, - { - "type": "{", - "named": false - }, - { - "type": "}", - "named": false - } - ] - }, - "operator": { - "multiple": false, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "&&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*.", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "+.", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "-.", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/.", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<.", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "<=.", - "named": false - }, - { - "type": "<>", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">.", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">=.", - "named": false - }, - { - "type": "as", - "named": false - }, - { - "type": "|>", - "named": false - }, - { - "type": "||", - "named": false - } - ] - }, - "right": { - "multiple": true, - "required": true, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "bit_string_pattern", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "discard", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "list_pattern", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "pipeline_echo", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_pattern", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - }, - { - "type": "tuple_pattern", - "named": true - }, - { - "type": "{", - "named": false - }, - { - "type": "}", - "named": false - } - ] - } - } - }, - { - "type": "bit_string", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "bit_string_segment", - "named": true - } - ] - } - }, - { - "type": "bit_string_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "bit_string_segment", - "named": true - } - ] - } - }, - { - "type": "bit_string_segment", - "named": true, - "fields": { - "assign": { - "multiple": true, - "required": false, - "types": [ - { - "type": "as", - "named": false - }, - { - "type": "identifier", - "named": true - } - ] - }, - "options": { - "multiple": true, - "required": false, - "types": [ - { - "type": ":", - "named": false - }, - { - "type": "bit_string_segment_options", - "named": true - } - ] - }, - "value": { - "multiple": true, - "required": true, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "as", - "named": false - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "bit_string_pattern", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "discard", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "list_pattern", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_pattern", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - }, - { - "type": "tuple_pattern", - "named": true - } - ] - } - } - }, - { - "type": "bit_string_segment_option", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - }, - { - "type": "bit_string_segment_options", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "bit_string_segment_option", - "named": true - }, - { - "type": "integer", - "named": true - } - ] - } - }, - { - "type": "block", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "assert", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "let", - "named": true - }, - { - "type": "let_assert", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - }, - { - "type": "use", - "named": true - } - ] - } - }, - { - "type": "boolean_negation", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - }, - { - "type": "case", - "named": true, - "fields": { - "clauses": { - "multiple": false, - "required": false, - "types": [ - { - "type": "case_clauses", - "named": true - } - ] - }, - "subjects": { - "multiple": false, - "required": true, - "types": [ - { - "type": "case_subjects", - "named": true - } - ] - } - } - }, - { - "type": "case_clause", - "named": true, - "fields": { - "guard": { - "multiple": false, - "required": false, - "types": [ - { - "type": "case_clause_guard", - "named": true - } - ] - }, - "patterns": { - "multiple": false, - "required": true, - "types": [ - { - "type": "case_clause_patterns", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - } - }, - { - "type": "case_clause_guard", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - }, - { - "type": "case_clause_pattern", - "named": true, - "fields": { - "assign": { - "multiple": true, - "required": false, - "types": [ - { - "type": "as", - "named": false - }, - { - "type": "identifier", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string_pattern", - "named": true - }, - { - "type": "discard", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "list_pattern", - "named": true - }, - { - "type": "record_pattern", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "tuple_pattern", - "named": true - } - ] - } - }, - { - "type": "case_clause_patterns", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "case_clause_pattern", - "named": true - } - ] - } - }, - { - "type": "case_clauses", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "case_clause", - "named": true - } - ] - } - }, - { - "type": "case_subjects", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - }, - { - "type": "constant", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - }, - "type": { - "multiple": false, - "required": false, - "types": [ - { - "type": "function_type", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type", - "named": true - }, - { - "type": "type_hole", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ - { - "type": "bit_string", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "tuple", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "visibility_modifier", - "named": true - } - ] - } - }, - { - "type": "constructor_name", - "named": true, - "fields": {} - }, - { - "type": "data_constructor", - "named": true, - "fields": { - "arguments": { - "multiple": false, - "required": false, - "types": [ - { - "type": "data_constructor_arguments", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "constructor_name", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "attribute", - "named": true - } - ] - } - }, - { - "type": "data_constructor_argument", - "named": true, - "fields": { - "label": { - "multiple": false, - "required": false, - "types": [ - { - "type": "label", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ - { - "type": "function_type", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type", - "named": true - }, - { - "type": "type_hole", - "named": true - }, - { - "type": "type_var", - "named": true - } - ] - } - } - }, - { - "type": "data_constructor_arguments", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "data_constructor_argument", - "named": true - } - ] - } - }, - { - "type": "data_constructors", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "data_constructor", - "named": true - } - ] - } - }, - { - "type": "discard", - "named": true, - "fields": {} - }, - { - "type": "echo", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - }, - { - "type": "escape_sequence", - "named": true, - "fields": {} - }, - { - "type": "external_function", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "external_function_body", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - }, - "parameters": { - "multiple": false, - "required": true, - "types": [ - { - "type": "function_parameters", - "named": true - } - ] - }, - "return_type": { - "multiple": false, - "required": true, - "types": [ - { - "type": "function_type", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type", - "named": true - }, - { - "type": "type_hole", - "named": true - }, - { - "type": "type_var", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "visibility_modifier", - "named": true - } - ] - } - }, - { - "type": "external_function_body", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "string", - "named": true - } - ] - } - }, - { - "type": "external_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "type_name", - "named": true - }, - { - "type": "visibility_modifier", - "named": true - } - ] - } - }, - { - "type": "field_access", - "named": true, - "fields": { - "field": { - "multiple": false, - "required": true, - "types": [ - { - "type": "label", - "named": true - } - ] - }, - "record": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - } - }, - { - "type": "function", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "block", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - }, - "parameters": { - "multiple": false, - "required": true, - "types": [ - { - "type": "function_parameters", - "named": true - } - ] - }, - "return_type": { - "multiple": false, - "required": false, - "types": [ - { - "type": "function_type", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type", - "named": true - }, - { - "type": "type_hole", - "named": true - }, - { - "type": "type_var", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "visibility_modifier", - "named": true - } - ] - } - }, - { - "type": "function_call", - "named": true, - "fields": { - "arguments": { - "multiple": false, - "required": true, - "types": [ - { - "type": "arguments", - "named": true - } - ] - }, - "function": { - "multiple": false, - "required": true, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - } - }, - { - "type": "function_parameter", - "named": true, - "fields": { - "label": { - "multiple": false, - "required": false, - "types": [ - { - "type": "label", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": false, - "types": [ - { - "type": "discard", - "named": true - }, - { - "type": "identifier", - "named": true - } - ] - }, - "type": { - "multiple": false, - "required": false, - "types": [ - { - "type": "function_type", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type", - "named": true - }, - { - "type": "type_hole", - "named": true - }, - { - "type": "type_var", - "named": true - } - ] - } - } - }, - { - "type": "function_parameter_types", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "function_type", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type", - "named": true - }, - { - "type": "type_hole", - "named": true - }, - { - "type": "type_var", - "named": true - } - ] - } - }, - { - "type": "function_parameters", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "function_parameter", - "named": true - } - ] - } - }, - { - "type": "function_type", - "named": true, - "fields": { - "parameter_types": { - "multiple": false, - "required": false, - "types": [ - { - "type": "function_parameter_types", - "named": true - } - ] - }, - "return_type": { - "multiple": false, - "required": true, - "types": [ - { - "type": "function_type", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type", - "named": true - }, - { - "type": "type_hole", - "named": true - }, - { - "type": "type_var", - "named": true - } - ] - } - } - }, - { - "type": "hole", - "named": true, - "fields": {} - }, - { - "type": "identifier", - "named": true, - "fields": {} - }, - { - "type": "import", - "named": true, - "fields": { - "alias": { - "multiple": false, - "required": false, - "types": [ - { - "type": "discard", - "named": true - }, - { - "type": "identifier", - "named": true - } - ] - }, - "imports": { - "multiple": false, - "required": false, - "types": [ - { - "type": "unqualified_imports", - "named": true - } - ] - }, - "module": { - "multiple": false, - "required": true, - "types": [ - { - "type": "module", - "named": true - } - ] - } - } - }, - { - "type": "integer", - "named": true, - "fields": {} - }, - { - "type": "integer_negation", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - }, - { - "type": "label", - "named": true, - "fields": {} - }, - { - "type": "let", - "named": true, - "fields": { - "assign": { - "multiple": true, - "required": false, - "types": [ - { - "type": "as", - "named": false - }, - { - "type": "identifier", - "named": true - } - ] - }, - "pattern": { - "multiple": true, - "required": true, - "types": [ - { - "type": "as", - "named": false - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string_pattern", - "named": true - }, - { - "type": "discard", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "list_pattern", - "named": true - }, - { - "type": "record_pattern", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "tuple_pattern", - "named": true - } - ] - }, - "type": { - "multiple": false, - "required": false, - "types": [ - { - "type": "function_type", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type", - "named": true - }, - { - "type": "type_hole", - "named": true - }, - { - "type": "type_var", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - } - }, - { - "type": "let_assert", - "named": true, - "fields": { - "assign": { - "multiple": true, - "required": false, - "types": [ - { - "type": "as", - "named": false - }, - { - "type": "identifier", - "named": true - } - ] - }, - "message": { - "multiple": false, - "required": false, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - }, - "pattern": { - "multiple": true, - "required": true, - "types": [ - { - "type": "as", - "named": false - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string_pattern", - "named": true - }, - { - "type": "discard", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "list_pattern", - "named": true - }, - { - "type": "record_pattern", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "tuple_pattern", - "named": true - } - ] - }, - "type": { - "multiple": false, - "required": false, - "types": [ - { - "type": "function_type", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type", - "named": true - }, - { - "type": "type_hole", - "named": true - }, - { - "type": "type_var", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - } - }, - { - "type": "list", - "named": true, - "fields": { - "spread": { - "multiple": false, - "required": false, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - }, - { - "type": "list_pattern", - "named": true, - "fields": { - "assign": { - "multiple": true, - "required": false, - "types": [ - { - "type": "as", - "named": false - }, - { - "type": "identifier", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string_pattern", - "named": true - }, - { - "type": "discard", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "list_pattern", - "named": true - }, - { - "type": "list_pattern_tail", - "named": true - }, - { - "type": "record_pattern", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "tuple_pattern", - "named": true - } - ] - } - }, - { - "type": "list_pattern_tail", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "discard", - "named": true - }, - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "module", - "named": true, - "fields": {} - }, - { - "type": "panic", - "named": true, - "fields": { - "message": { - "multiple": false, - "required": false, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - } - }, - { - "type": "pattern_spread", - "named": true, - "fields": {} - }, - { - "type": "pipeline_echo", - "named": true, - "fields": {} - }, - { - "type": "record", - "named": true, - "fields": { - "arguments": { - "multiple": false, - "required": false, - "types": [ - { - "type": "arguments", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "constructor_name", - "named": true - }, - { - "type": "remote_constructor_name", - "named": true - } - ] - } - } - }, - { - "type": "record_pattern", - "named": true, - "fields": { - "arguments": { - "multiple": false, - "required": false, - "types": [ - { - "type": "record_pattern_arguments", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "constructor_name", - "named": true - }, - { - "type": "remote_constructor_name", - "named": true - } - ] - } - } - }, - { - "type": "record_pattern_argument", - "named": true, - "fields": { - "assign": { - "multiple": true, - "required": false, - "types": [ - { - "type": "as", - "named": false - }, - { - "type": "identifier", - "named": true - } - ] - }, - "label": { - "multiple": false, - "required": false, - "types": [ - { - "type": "label", - "named": true - } - ] - }, - "pattern": { - "multiple": true, - "required": false, - "types": [ - { - "type": "as", - "named": false - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string_pattern", - "named": true - }, - { - "type": "discard", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "list_pattern", - "named": true - }, - { - "type": "record_pattern", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "tuple_pattern", - "named": true - } - ] - } - } - }, - { - "type": "record_pattern_arguments", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "pattern_spread", - "named": true - }, - { - "type": "record_pattern_argument", - "named": true - } - ] - } - }, - { - "type": "record_update", - "named": true, - "fields": { - "arguments": { - "multiple": false, - "required": true, - "types": [ - { - "type": "record_update_arguments", - "named": true - } - ] - }, - "constructor": { - "multiple": false, - "required": true, - "types": [ - { - "type": "constructor_name", - "named": true - }, - { - "type": "remote_constructor_name", - "named": true - } - ] - }, - "spread": { - "multiple": false, - "required": true, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - } - }, - { - "type": "record_update_argument", - "named": true, - "fields": { - "label": { - "multiple": false, - "required": true, - "types": [ - { - "type": "label", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": false, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - } - }, - { - "type": "record_update_arguments", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "record_update_argument", - "named": true - } - ] - } - }, - { - "type": "remote_constructor_name", - "named": true, - "fields": { - "module": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "constructor_name", - "named": true - } - ] - } - } - }, - { - "type": "remote_type_identifier", - "named": true, - "fields": { - "module": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "type_identifier", - "named": true - } - ] - } - } - }, - { - "type": "source_file", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "assert", - "named": true - }, - { - "type": "attribute", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "constant", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "external_function", - "named": true - }, - { - "type": "external_type", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "import", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "let", - "named": true - }, - { - "type": "let_assert", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "target_group", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - }, - { - "type": "type_alias", - "named": true - }, - { - "type": "type_definition", - "named": true - }, - { - "type": "use", - "named": true - } - ] - } - }, - { - "type": "string", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "escape_sequence", - "named": true - }, - { - "type": "quoted_content", - "named": true - } - ] - } - }, - { - "type": "target", - "named": true, - "fields": {} - }, - { - "type": "target_group", - "named": true, - "fields": { - "target": { - "multiple": false, - "required": true, - "types": [ - { - "type": "target", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attribute", - "named": true - }, - { - "type": "constant", - "named": true - }, - { - "type": "external_function", - "named": true - }, - { - "type": "external_type", - "named": true - }, - { - "type": "function", - "named": true - }, - { - "type": "import", - "named": true - }, - { - "type": "type_alias", - "named": true - }, - { - "type": "type_definition", - "named": true - } - ] - } - }, - { - "type": "todo", - "named": true, - "fields": { - "message": { - "multiple": false, - "required": false, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - } - }, - { - "type": "tuple", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - }, - { - "type": "tuple_access", - "named": true, - "fields": { - "index": { - "multiple": false, - "required": true, - "types": [ - { - "type": "integer", - "named": true - } - ] - }, - "tuple": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - } - }, - { - "type": "tuple_pattern", - "named": true, - "fields": { - "assign": { - "multiple": true, - "required": false, - "types": [ - { - "type": "as", - "named": false - }, - { - "type": "identifier", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string_pattern", - "named": true - }, - { - "type": "discard", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "list_pattern", - "named": true - }, - { - "type": "record_pattern", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "tuple_pattern", - "named": true - } - ] - } - }, - { - "type": "tuple_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "function_type", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type", - "named": true - }, - { - "type": "type_hole", - "named": true - }, - { - "type": "type_var", - "named": true - } - ] - } - }, - { - "type": "type", - "named": true, - "fields": { - "arguments": { - "multiple": false, - "required": false, - "types": [ - { - "type": "type_arguments", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "remote_type_identifier", - "named": true - }, - { - "type": "type_identifier", - "named": true - } - ] - } - } - }, - { - "type": "type_alias", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "function_type", - "named": true - }, - { - "type": "opacity_modifier", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type", - "named": true - }, - { - "type": "type_hole", - "named": true - }, - { - "type": "type_name", - "named": true - }, - { - "type": "type_var", - "named": true - }, - { - "type": "visibility_modifier", - "named": true - } - ] - } - }, - { - "type": "type_argument", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "function_type", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type", - "named": true - }, - { - "type": "type_hole", - "named": true - }, - { - "type": "type_var", - "named": true - } - ] - } - }, - { - "type": "type_arguments", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "type_argument", - "named": true - } - ] - } - }, - { - "type": "type_definition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "data_constructors", - "named": true - }, - { - "type": "opacity_modifier", - "named": true - }, - { - "type": "type_name", - "named": true - }, - { - "type": "visibility_modifier", - "named": true - } - ] - } - }, - { - "type": "type_hole", - "named": true, - "fields": {} - }, - { - "type": "type_identifier", - "named": true, - "fields": {} - }, - { - "type": "type_name", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "remote_type_identifier", - "named": true - }, - { - "type": "type_identifier", - "named": true - } - ] - }, - "parameters": { - "multiple": false, - "required": false, - "types": [ - { - "type": "type_parameters", - "named": true - } - ] - } - } - }, - { - "type": "type_parameter", - "named": true, - "fields": {} - }, - { - "type": "type_parameters", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "type_parameter", - "named": true - } - ] - } - }, - { - "type": "type_var", - "named": true, - "fields": {} - }, - { - "type": "unqualified_import", - "named": true, - "fields": { - "alias": { - "multiple": false, - "required": false, - "types": [ - { - "type": "constructor_name", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "type_identifier", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "constructor_name", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "type_identifier", - "named": true - } - ] - } - } - }, - { - "type": "unqualified_imports", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "unqualified_import", - "named": true - } - ] - } - }, - { - "type": "use", - "named": true, - "fields": { - "assignments": { - "multiple": false, - "required": false, - "types": [ - { - "type": "use_assignments", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - } - }, - { - "type": "use_assignment", - "named": true, - "fields": { - "assign": { - "multiple": true, - "required": false, - "types": [ - { - "type": "as", - "named": false - }, - { - "type": "identifier", - "named": true - } - ] - }, - "type": { - "multiple": false, - "required": false, - "types": [ - { - "type": "function_type", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type", - "named": true - }, - { - "type": "type_hole", - "named": true - }, - { - "type": "type_var", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string_pattern", - "named": true - }, - { - "type": "discard", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "list_pattern", - "named": true - }, - { - "type": "record_pattern", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "tuple_pattern", - "named": true - } - ] - } - }, - { - "type": "use_assignments", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "use_assignment", - "named": true - } - ] - } - }, - { - "type": "!", - "named": false - }, - { - "type": "!=", - "named": false - }, - { - "type": "\"", - "named": false - }, - { - "type": "#", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "&&", - "named": false - }, - { - "type": "(", - "named": false - }, - { - "type": ")", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*.", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "+.", - "named": false - }, - { - "type": ",", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "-.", - "named": false - }, - { - "type": "->", - "named": false - }, - { - "type": ".", - "named": false - }, - { - "type": "..", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/.", - "named": false - }, - { - "type": ":", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<-", - "named": false - }, - { - "type": "<.", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "<=.", - "named": false - }, - { - "type": "<>", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">.", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">=.", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "@", - "named": false - }, - { - "type": "[", - "named": false - }, - { - "type": "]", - "named": false - }, - { - "type": "as", - "named": false - }, - { - "type": "assert", - "named": false - }, - { - "type": "big", - "named": false - }, - { - "type": "binary", - "named": false - }, - { - "type": "bit_string", - "named": false - }, - { - "type": "bits", - "named": false - }, - { - "type": "bytes", - "named": false - }, - { - "type": "case", - "named": false - }, - { - "type": "comment", - "named": true - }, - { - "type": "const", - "named": false - }, - { - "type": "echo", - "named": false - }, - { - "type": "erlang", - "named": false - }, - { - "type": "external", - "named": false - }, - { - "type": "float", - "named": false - }, - { - "type": "float", - "named": true - }, - { - "type": "fn", - "named": false - }, - { - "type": "if", - "named": false - }, - { - "type": "import", - "named": false - }, - { - "type": "int", - "named": false - }, - { - "type": "javascript", - "named": false - }, - { - "type": "let", - "named": false - }, - { - "type": "little", - "named": false - }, - { - "type": "module_comment", - "named": true - }, - { - "type": "native", - "named": false - }, - { - "type": "opacity_modifier", - "named": true - }, - { - "type": "panic", - "named": false - }, - { - "type": "quoted_content", - "named": true - }, - { - "type": "signed", - "named": false - }, - { - "type": "size", - "named": false - }, - { - "type": "statement_comment", - "named": true - }, - { - "type": "todo", - "named": false - }, - { - "type": "type", - "named": false - }, - { - "type": "unit", - "named": false - }, - { - "type": "unsigned", - "named": false - }, - { - "type": "use", - "named": false - }, - { - "type": "utf16", - "named": false - }, - { - "type": "utf16_codepoint", - "named": false - }, - { - "type": "utf32", - "named": false - }, - { - "type": "utf32_codepoint", - "named": false - }, - { - "type": "utf8", - "named": false - }, - { - "type": "utf8_codepoint", - "named": false - }, - { - "type": "visibility_modifier", - "named": true - }, - { - "type": "{", - "named": false - }, - { - "type": "|", - "named": false - }, - { - "type": "|>", - "named": false - }, - { - "type": "||", - "named": false - }, - { - "type": "}", - "named": false - } -] \ No newline at end of file diff --git a/vendored_parsers/tree-sitter-gleam/src/parser.c b/vendored_parsers/tree-sitter-gleam/src/parser.c deleted file mode 100644 index 5bedd6348..000000000 --- a/vendored_parsers/tree-sitter-gleam/src/parser.c +++ /dev/null @@ -1,84091 +0,0 @@ -#include - -#if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push -#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 13 -#define STATE_COUNT 1892 -#define LARGE_STATE_COUNT 14 -#define SYMBOL_COUNT 274 -#define ALIAS_COUNT 0 -#define TOKEN_COUNT 96 -#define EXTERNAL_TOKEN_COUNT 1 -#define FIELD_COUNT 32 -#define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 80 - -enum { - sym_module_comment = 1, - sym_statement_comment = 2, - sym_comment = 3, - anon_sym_if = 4, - anon_sym_LBRACE = 5, - anon_sym_RBRACE = 6, - anon_sym_erlang = 7, - anon_sym_javascript = 8, - anon_sym_AT = 9, - anon_sym_LPAREN = 10, - anon_sym_COMMA = 11, - anon_sym_RPAREN = 12, - anon_sym_COLON = 13, - anon_sym_import = 14, - anon_sym_DOT = 15, - anon_sym_as = 16, - anon_sym_SLASH = 17, - anon_sym_type = 18, - anon_sym_const = 19, - anon_sym_EQ = 20, - anon_sym_POUND = 21, - anon_sym_LBRACK = 22, - anon_sym_RBRACK = 23, - anon_sym_LT_LT = 24, - anon_sym_GT_GT = 25, - anon_sym_DASH = 26, - anon_sym_size = 27, - anon_sym_fn = 28, - anon_sym_DASH_GT = 29, - anon_sym_external = 30, - anon_sym_PIPE_PIPE = 31, - anon_sym_AMP_AMP = 32, - anon_sym_EQ_EQ = 33, - anon_sym_BANG_EQ = 34, - anon_sym_LT = 35, - anon_sym_LT_EQ = 36, - anon_sym_LT_DOT = 37, - anon_sym_LT_EQ_DOT = 38, - anon_sym_GT = 39, - anon_sym_GT_EQ = 40, - anon_sym_GT_DOT = 41, - anon_sym_GT_EQ_DOT = 42, - anon_sym_PIPE_GT = 43, - anon_sym_PLUS = 44, - anon_sym_PLUS_DOT = 45, - anon_sym_DASH_DOT = 46, - anon_sym_STAR = 47, - anon_sym_STAR_DOT = 48, - anon_sym_SLASH_DOT = 49, - anon_sym_PERCENT = 50, - anon_sym_LT_GT = 51, - anon_sym_todo = 52, - anon_sym_panic = 53, - anon_sym_echo = 54, - anon_sym_DOT_DOT = 55, - anon_sym_case = 56, - anon_sym_PIPE = 57, - anon_sym_let = 58, - anon_sym_assert = 59, - anon_sym_use = 60, - anon_sym_LT_DASH = 61, - anon_sym_BANG = 62, - sym_visibility_modifier = 63, - sym_opacity_modifier = 64, - anon_sym_DQUOTE = 65, - anon_sym_DQUOTE2 = 66, - aux_sym_escape_sequence_token1 = 67, - aux_sym_escape_sequence_token2 = 68, - sym_float = 69, - sym__hex = 70, - sym__decimal = 71, - sym__octal = 72, - sym__binary = 73, - anon_sym_binary = 74, - anon_sym_bytes = 75, - anon_sym_int = 76, - anon_sym_float = 77, - anon_sym_bit_string = 78, - anon_sym_bits = 79, - anon_sym_utf8 = 80, - anon_sym_utf16 = 81, - anon_sym_utf32 = 82, - anon_sym_utf8_codepoint = 83, - anon_sym_utf16_codepoint = 84, - anon_sym_utf32_codepoint = 85, - anon_sym_signed = 86, - anon_sym_unsigned = 87, - anon_sym_big = 88, - anon_sym_little = 89, - anon_sym_native = 90, - anon_sym_unit = 91, - sym__discard_name = 92, - sym__name = 93, - sym__upname = 94, - sym_quoted_content = 95, - sym_source_file = 96, - sym__module_statement = 97, - sym_target_group = 98, - sym_target = 99, - sym_attribute = 100, - sym__attribute_arguments = 101, - sym_attribute_value = 102, - sym_import = 103, - sym_module = 104, - sym_unqualified_imports = 105, - sym_unqualified_import = 106, - sym_constant = 107, - sym__constant_value = 108, - sym_constant_tuple = 109, - sym_constant_list = 110, - sym__constant_bit_string = 111, - sym_constant_bit_string_segment = 112, - sym_constant_bit_string_segment_options = 113, - sym__constant_bit_string_segment_option = 114, - sym__constant_bit_string_named_segment_option = 115, - sym__constant_bit_string_segment_option_size = 116, - sym_constant_record = 117, - sym_constant_record_arguments = 118, - sym_constant_record_argument = 119, - sym_constant_field_access = 120, - sym__constant_type = 121, - sym__constant_type_annotation = 122, - sym_constant_tuple_type = 123, - sym_constant_function_type = 124, - sym_constant_function_parameter_types = 125, - sym_constant_type = 126, - sym_constant_type_arguments = 127, - sym_constant_type_argument = 128, - sym_external_type = 129, - sym_external_function = 130, - sym_external_function_parameters = 131, - sym_external_function_parameter = 132, - sym_external_function_body = 133, - sym_function = 134, - sym_function_parameters = 135, - sym_function_parameter = 136, - sym__labeled_discard_param = 137, - sym__discard_param = 138, - sym__labeled_name_param = 139, - sym__name_param = 140, - aux_sym__statement_seq = 141, - sym__statement = 142, - sym__expression = 143, - sym_binary_expression = 144, - sym__expression_unit = 145, - sym_record = 146, - sym_todo = 147, - sym_panic = 148, - sym_pipeline_echo = 149, - sym_echo = 150, - sym_tuple = 151, - sym_list = 152, - sym__expression_bit_string = 153, - sym_expression_bit_string_segment = 154, - sym_expression_bit_string_segment_options = 155, - sym__expression_bit_string_segment_option = 156, - sym__expression_bit_string_named_segment_option = 157, - sym__expression_bit_string_segment_option_size = 158, - sym_anonymous_function = 159, - sym_anonymous_function_parameters = 160, - sym_anonymous_function_parameter = 161, - sym_block = 162, - sym_case = 163, - sym_case_subjects = 164, - sym_case_clauses = 165, - sym_case_clause = 166, - sym_case_clause_patterns = 167, - sym_case_clause_pattern = 168, - sym_case_clause_guard = 169, - sym__case_clause_guard_expression = 170, - sym__case_clause_guard_binary_expression = 171, - sym__case_clause_guard_unit = 172, - sym__case_clause_tuple_access = 173, - sym_let_assert = 174, - sym_assert = 175, - sym_let = 176, - sym_use = 177, - sym_use_assignments = 178, - sym_use_assignment = 179, - sym_boolean_negation = 180, - sym_integer_negation = 181, - sym__assignment = 182, - sym_record_update = 183, - sym_record_update_arguments = 184, - sym_record_update_argument = 185, - sym__maybe_tuple_expression = 186, - sym_tuple_access = 187, - sym__maybe_record_expression = 188, - sym_field_access = 189, - sym__maybe_function_expression = 190, - sym_arguments = 191, - sym_argument = 192, - sym_hole = 193, - sym_function_call = 194, - sym__pattern_expression = 195, - sym__pattern_binary_expression = 196, - sym__pattern = 197, - sym_record_pattern = 198, - sym_record_pattern_arguments = 199, - sym_record_pattern_argument = 200, - sym_pattern_spread = 201, - sym_tuple_pattern = 202, - sym__pattern_bit_string = 203, - sym_pattern_bit_string_segment = 204, - sym_pattern_bit_string_segment_options = 205, - sym__pattern_bit_string_segment_option = 206, - sym__pattern_bit_string_named_segment_option = 207, - sym__pattern_bit_string_segment_option_size = 208, - sym__pattern_bit_string_segment_argument = 209, - sym_list_pattern = 210, - sym_list_pattern_tail = 211, - sym_type_definition = 212, - sym_data_constructors = 213, - sym_data_constructor = 214, - sym_data_constructor_arguments = 215, - sym_data_constructor_argument = 216, - sym_type_alias = 217, - sym_string = 218, - sym_escape_sequence = 219, - sym_integer = 220, - sym__bit_string_segment_option = 221, - sym__type = 222, - sym__type_annotation = 223, - sym_type_hole = 224, - sym_tuple_type = 225, - sym_function_type = 226, - sym_function_parameter_types = 227, - sym_type = 228, - sym_type_arguments = 229, - sym_type_argument = 230, - sym_type_var = 231, - sym_type_name = 232, - sym_type_parameters = 233, - sym_type_parameter = 234, - sym_identifier = 235, - sym_label = 236, - sym_discard = 237, - sym_type_identifier = 238, - sym_remote_type_identifier = 239, - sym_constructor_name = 240, - sym_remote_constructor_name = 241, - aux_sym_source_file_repeat1 = 242, - aux_sym_target_group_repeat1 = 243, - aux_sym__attribute_arguments_repeat1 = 244, - aux_sym_module_repeat1 = 245, - aux_sym_unqualified_imports_repeat1 = 246, - aux_sym_constant_tuple_repeat1 = 247, - aux_sym__constant_bit_string_repeat1 = 248, - aux_sym_constant_bit_string_segment_options_repeat1 = 249, - aux_sym_constant_record_arguments_repeat1 = 250, - aux_sym_constant_tuple_type_repeat1 = 251, - aux_sym_constant_type_arguments_repeat1 = 252, - aux_sym_external_function_parameters_repeat1 = 253, - aux_sym_function_parameters_repeat1 = 254, - aux_sym_tuple_repeat1 = 255, - aux_sym__expression_bit_string_repeat1 = 256, - aux_sym_expression_bit_string_segment_options_repeat1 = 257, - aux_sym_anonymous_function_parameters_repeat1 = 258, - aux_sym_case_clauses_repeat1 = 259, - aux_sym_case_clause_patterns_repeat1 = 260, - aux_sym_case_clause_pattern_repeat1 = 261, - aux_sym_use_assignments_repeat1 = 262, - aux_sym_record_update_arguments_repeat1 = 263, - aux_sym_arguments_repeat1 = 264, - aux_sym_record_pattern_arguments_repeat1 = 265, - aux_sym__pattern_bit_string_repeat1 = 266, - aux_sym_pattern_bit_string_segment_options_repeat1 = 267, - aux_sym_data_constructors_repeat1 = 268, - aux_sym_data_constructor_arguments_repeat1 = 269, - aux_sym_string_repeat1 = 270, - aux_sym_tuple_type_repeat1 = 271, - aux_sym_type_arguments_repeat1 = 272, - aux_sym_type_parameters_repeat1 = 273, -}; - -static const char * const ts_symbol_names[] = { - [ts_builtin_sym_end] = "end", - [sym_module_comment] = "module_comment", - [sym_statement_comment] = "statement_comment", - [sym_comment] = "comment", - [anon_sym_if] = "if", - [anon_sym_LBRACE] = "{", - [anon_sym_RBRACE] = "}", - [anon_sym_erlang] = "erlang", - [anon_sym_javascript] = "javascript", - [anon_sym_AT] = "@", - [anon_sym_LPAREN] = "(", - [anon_sym_COMMA] = ",", - [anon_sym_RPAREN] = ")", - [anon_sym_COLON] = ":", - [anon_sym_import] = "import", - [anon_sym_DOT] = ".", - [anon_sym_as] = "as", - [anon_sym_SLASH] = "/", - [anon_sym_type] = "type", - [anon_sym_const] = "const", - [anon_sym_EQ] = "=", - [anon_sym_POUND] = "#", - [anon_sym_LBRACK] = "[", - [anon_sym_RBRACK] = "]", - [anon_sym_LT_LT] = "<<", - [anon_sym_GT_GT] = ">>", - [anon_sym_DASH] = "-", - [anon_sym_size] = "size", - [anon_sym_fn] = "fn", - [anon_sym_DASH_GT] = "->", - [anon_sym_external] = "external", - [anon_sym_PIPE_PIPE] = "||", - [anon_sym_AMP_AMP] = "&&", - [anon_sym_EQ_EQ] = "==", - [anon_sym_BANG_EQ] = "!=", - [anon_sym_LT] = "<", - [anon_sym_LT_EQ] = "<=", - [anon_sym_LT_DOT] = "<.", - [anon_sym_LT_EQ_DOT] = "<=.", - [anon_sym_GT] = ">", - [anon_sym_GT_EQ] = ">=", - [anon_sym_GT_DOT] = ">.", - [anon_sym_GT_EQ_DOT] = ">=.", - [anon_sym_PIPE_GT] = "|>", - [anon_sym_PLUS] = "+", - [anon_sym_PLUS_DOT] = "+.", - [anon_sym_DASH_DOT] = "-.", - [anon_sym_STAR] = "*", - [anon_sym_STAR_DOT] = "*.", - [anon_sym_SLASH_DOT] = "/.", - [anon_sym_PERCENT] = "%", - [anon_sym_LT_GT] = "<>", - [anon_sym_todo] = "todo", - [anon_sym_panic] = "panic", - [anon_sym_echo] = "echo", - [anon_sym_DOT_DOT] = "..", - [anon_sym_case] = "case", - [anon_sym_PIPE] = "|", - [anon_sym_let] = "let", - [anon_sym_assert] = "assert", - [anon_sym_use] = "use", - [anon_sym_LT_DASH] = "<-", - [anon_sym_BANG] = "!", - [sym_visibility_modifier] = "visibility_modifier", - [sym_opacity_modifier] = "opacity_modifier", - [anon_sym_DQUOTE] = "\"", - [anon_sym_DQUOTE2] = "\"", - [aux_sym_escape_sequence_token1] = "escape_sequence_token1", - [aux_sym_escape_sequence_token2] = "escape_sequence_token2", - [sym_float] = "float", - [sym__hex] = "_hex", - [sym__decimal] = "_decimal", - [sym__octal] = "_octal", - [sym__binary] = "_binary", - [anon_sym_binary] = "binary", - [anon_sym_bytes] = "bytes", - [anon_sym_int] = "int", - [anon_sym_float] = "float", - [anon_sym_bit_string] = "bit_string", - [anon_sym_bits] = "bits", - [anon_sym_utf8] = "utf8", - [anon_sym_utf16] = "utf16", - [anon_sym_utf32] = "utf32", - [anon_sym_utf8_codepoint] = "utf8_codepoint", - [anon_sym_utf16_codepoint] = "utf16_codepoint", - [anon_sym_utf32_codepoint] = "utf32_codepoint", - [anon_sym_signed] = "signed", - [anon_sym_unsigned] = "unsigned", - [anon_sym_big] = "big", - [anon_sym_little] = "little", - [anon_sym_native] = "native", - [anon_sym_unit] = "unit", - [sym__discard_name] = "_discard_name", - [sym__name] = "_name", - [sym__upname] = "_upname", - [sym_quoted_content] = "quoted_content", - [sym_source_file] = "source_file", - [sym__module_statement] = "_module_statement", - [sym_target_group] = "target_group", - [sym_target] = "target", - [sym_attribute] = "attribute", - [sym__attribute_arguments] = "arguments", - [sym_attribute_value] = "attribute_value", - [sym_import] = "import", - [sym_module] = "module", - [sym_unqualified_imports] = "unqualified_imports", - [sym_unqualified_import] = "unqualified_import", - [sym_constant] = "constant", - [sym__constant_value] = "_constant_value", - [sym_constant_tuple] = "tuple", - [sym_constant_list] = "list", - [sym__constant_bit_string] = "bit_string", - [sym_constant_bit_string_segment] = "bit_string_segment", - [sym_constant_bit_string_segment_options] = "bit_string_segment_options", - [sym__constant_bit_string_segment_option] = "_constant_bit_string_segment_option", - [sym__constant_bit_string_named_segment_option] = "_constant_bit_string_named_segment_option", - [sym__constant_bit_string_segment_option_size] = "bit_string_segment_option", - [sym_constant_record] = "record", - [sym_constant_record_arguments] = "arguments", - [sym_constant_record_argument] = "argument", - [sym_constant_field_access] = "field_access", - [sym__constant_type] = "_constant_type", - [sym__constant_type_annotation] = "_constant_type_annotation", - [sym_constant_tuple_type] = "tuple_type", - [sym_constant_function_type] = "function_type", - [sym_constant_function_parameter_types] = "function_parameter_types", - [sym_constant_type] = "type", - [sym_constant_type_arguments] = "type_arguments", - [sym_constant_type_argument] = "type_argument", - [sym_external_type] = "external_type", - [sym_external_function] = "external_function", - [sym_external_function_parameters] = "function_parameters", - [sym_external_function_parameter] = "function_parameter", - [sym_external_function_body] = "external_function_body", - [sym_function] = "function", - [sym_function_parameters] = "function_parameters", - [sym_function_parameter] = "function_parameter", - [sym__labeled_discard_param] = "_labeled_discard_param", - [sym__discard_param] = "_discard_param", - [sym__labeled_name_param] = "_labeled_name_param", - [sym__name_param] = "_name_param", - [aux_sym__statement_seq] = "_statement_seq", - [sym__statement] = "_statement", - [sym__expression] = "_expression", - [sym_binary_expression] = "binary_expression", - [sym__expression_unit] = "_expression_unit", - [sym_record] = "record", - [sym_todo] = "todo", - [sym_panic] = "panic", - [sym_pipeline_echo] = "pipeline_echo", - [sym_echo] = "echo", - [sym_tuple] = "tuple", - [sym_list] = "list", - [sym__expression_bit_string] = "bit_string", - [sym_expression_bit_string_segment] = "bit_string_segment", - [sym_expression_bit_string_segment_options] = "bit_string_segment_options", - [sym__expression_bit_string_segment_option] = "_expression_bit_string_segment_option", - [sym__expression_bit_string_named_segment_option] = "_expression_bit_string_named_segment_option", - [sym__expression_bit_string_segment_option_size] = "bit_string_segment_option", - [sym_anonymous_function] = "anonymous_function", - [sym_anonymous_function_parameters] = "function_parameters", - [sym_anonymous_function_parameter] = "function_parameter", - [sym_block] = "block", - [sym_case] = "case", - [sym_case_subjects] = "case_subjects", - [sym_case_clauses] = "case_clauses", - [sym_case_clause] = "case_clause", - [sym_case_clause_patterns] = "case_clause_patterns", - [sym_case_clause_pattern] = "case_clause_pattern", - [sym_case_clause_guard] = "case_clause_guard", - [sym__case_clause_guard_expression] = "_case_clause_guard_expression", - [sym__case_clause_guard_binary_expression] = "binary_expression", - [sym__case_clause_guard_unit] = "_case_clause_guard_unit", - [sym__case_clause_tuple_access] = "tuple_access", - [sym_let_assert] = "let_assert", - [sym_assert] = "assert", - [sym_let] = "let", - [sym_use] = "use", - [sym_use_assignments] = "use_assignments", - [sym_use_assignment] = "use_assignment", - [sym_boolean_negation] = "boolean_negation", - [sym_integer_negation] = "integer_negation", - [sym__assignment] = "_assignment", - [sym_record_update] = "record_update", - [sym_record_update_arguments] = "record_update_arguments", - [sym_record_update_argument] = "record_update_argument", - [sym__maybe_tuple_expression] = "_maybe_tuple_expression", - [sym_tuple_access] = "tuple_access", - [sym__maybe_record_expression] = "_maybe_record_expression", - [sym_field_access] = "field_access", - [sym__maybe_function_expression] = "_maybe_function_expression", - [sym_arguments] = "arguments", - [sym_argument] = "argument", - [sym_hole] = "hole", - [sym_function_call] = "function_call", - [sym__pattern_expression] = "_pattern_expression", - [sym__pattern_binary_expression] = "binary_expression", - [sym__pattern] = "_pattern", - [sym_record_pattern] = "record_pattern", - [sym_record_pattern_arguments] = "record_pattern_arguments", - [sym_record_pattern_argument] = "record_pattern_argument", - [sym_pattern_spread] = "pattern_spread", - [sym_tuple_pattern] = "tuple_pattern", - [sym__pattern_bit_string] = "bit_string_pattern", - [sym_pattern_bit_string_segment] = "bit_string_segment", - [sym_pattern_bit_string_segment_options] = "bit_string_segment_options", - [sym__pattern_bit_string_segment_option] = "_pattern_bit_string_segment_option", - [sym__pattern_bit_string_named_segment_option] = "_pattern_bit_string_named_segment_option", - [sym__pattern_bit_string_segment_option_size] = "bit_string_segment_option", - [sym__pattern_bit_string_segment_argument] = "_pattern_bit_string_segment_argument", - [sym_list_pattern] = "list_pattern", - [sym_list_pattern_tail] = "list_pattern_tail", - [sym_type_definition] = "type_definition", - [sym_data_constructors] = "data_constructors", - [sym_data_constructor] = "data_constructor", - [sym_data_constructor_arguments] = "data_constructor_arguments", - [sym_data_constructor_argument] = "data_constructor_argument", - [sym_type_alias] = "type_alias", - [sym_string] = "string", - [sym_escape_sequence] = "escape_sequence", - [sym_integer] = "integer", - [sym__bit_string_segment_option] = "bit_string_segment_option", - [sym__type] = "_type", - [sym__type_annotation] = "_type_annotation", - [sym_type_hole] = "type_hole", - [sym_tuple_type] = "tuple_type", - [sym_function_type] = "function_type", - [sym_function_parameter_types] = "function_parameter_types", - [sym_type] = "type", - [sym_type_arguments] = "type_arguments", - [sym_type_argument] = "type_argument", - [sym_type_var] = "type_var", - [sym_type_name] = "type_name", - [sym_type_parameters] = "type_parameters", - [sym_type_parameter] = "type_parameter", - [sym_identifier] = "identifier", - [sym_label] = "label", - [sym_discard] = "discard", - [sym_type_identifier] = "type_identifier", - [sym_remote_type_identifier] = "remote_type_identifier", - [sym_constructor_name] = "constructor_name", - [sym_remote_constructor_name] = "remote_constructor_name", - [aux_sym_source_file_repeat1] = "source_file_repeat1", - [aux_sym_target_group_repeat1] = "target_group_repeat1", - [aux_sym__attribute_arguments_repeat1] = "_attribute_arguments_repeat1", - [aux_sym_module_repeat1] = "module_repeat1", - [aux_sym_unqualified_imports_repeat1] = "unqualified_imports_repeat1", - [aux_sym_constant_tuple_repeat1] = "constant_tuple_repeat1", - [aux_sym__constant_bit_string_repeat1] = "_constant_bit_string_repeat1", - [aux_sym_constant_bit_string_segment_options_repeat1] = "constant_bit_string_segment_options_repeat1", - [aux_sym_constant_record_arguments_repeat1] = "constant_record_arguments_repeat1", - [aux_sym_constant_tuple_type_repeat1] = "constant_tuple_type_repeat1", - [aux_sym_constant_type_arguments_repeat1] = "constant_type_arguments_repeat1", - [aux_sym_external_function_parameters_repeat1] = "external_function_parameters_repeat1", - [aux_sym_function_parameters_repeat1] = "function_parameters_repeat1", - [aux_sym_tuple_repeat1] = "tuple_repeat1", - [aux_sym__expression_bit_string_repeat1] = "_expression_bit_string_repeat1", - [aux_sym_expression_bit_string_segment_options_repeat1] = "expression_bit_string_segment_options_repeat1", - [aux_sym_anonymous_function_parameters_repeat1] = "anonymous_function_parameters_repeat1", - [aux_sym_case_clauses_repeat1] = "case_clauses_repeat1", - [aux_sym_case_clause_patterns_repeat1] = "case_clause_patterns_repeat1", - [aux_sym_case_clause_pattern_repeat1] = "case_clause_pattern_repeat1", - [aux_sym_use_assignments_repeat1] = "use_assignments_repeat1", - [aux_sym_record_update_arguments_repeat1] = "record_update_arguments_repeat1", - [aux_sym_arguments_repeat1] = "arguments_repeat1", - [aux_sym_record_pattern_arguments_repeat1] = "record_pattern_arguments_repeat1", - [aux_sym__pattern_bit_string_repeat1] = "_pattern_bit_string_repeat1", - [aux_sym_pattern_bit_string_segment_options_repeat1] = "pattern_bit_string_segment_options_repeat1", - [aux_sym_data_constructors_repeat1] = "data_constructors_repeat1", - [aux_sym_data_constructor_arguments_repeat1] = "data_constructor_arguments_repeat1", - [aux_sym_string_repeat1] = "string_repeat1", - [aux_sym_tuple_type_repeat1] = "tuple_type_repeat1", - [aux_sym_type_arguments_repeat1] = "type_arguments_repeat1", - [aux_sym_type_parameters_repeat1] = "type_parameters_repeat1", -}; - -static const TSSymbol ts_symbol_map[] = { - [ts_builtin_sym_end] = ts_builtin_sym_end, - [sym_module_comment] = sym_module_comment, - [sym_statement_comment] = sym_statement_comment, - [sym_comment] = sym_comment, - [anon_sym_if] = anon_sym_if, - [anon_sym_LBRACE] = anon_sym_LBRACE, - [anon_sym_RBRACE] = anon_sym_RBRACE, - [anon_sym_erlang] = anon_sym_erlang, - [anon_sym_javascript] = anon_sym_javascript, - [anon_sym_AT] = anon_sym_AT, - [anon_sym_LPAREN] = anon_sym_LPAREN, - [anon_sym_COMMA] = anon_sym_COMMA, - [anon_sym_RPAREN] = anon_sym_RPAREN, - [anon_sym_COLON] = anon_sym_COLON, - [anon_sym_import] = anon_sym_import, - [anon_sym_DOT] = anon_sym_DOT, - [anon_sym_as] = anon_sym_as, - [anon_sym_SLASH] = anon_sym_SLASH, - [anon_sym_type] = anon_sym_type, - [anon_sym_const] = anon_sym_const, - [anon_sym_EQ] = anon_sym_EQ, - [anon_sym_POUND] = anon_sym_POUND, - [anon_sym_LBRACK] = anon_sym_LBRACK, - [anon_sym_RBRACK] = anon_sym_RBRACK, - [anon_sym_LT_LT] = anon_sym_LT_LT, - [anon_sym_GT_GT] = anon_sym_GT_GT, - [anon_sym_DASH] = anon_sym_DASH, - [anon_sym_size] = anon_sym_size, - [anon_sym_fn] = anon_sym_fn, - [anon_sym_DASH_GT] = anon_sym_DASH_GT, - [anon_sym_external] = anon_sym_external, - [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, - [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, - [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, - [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, - [anon_sym_LT] = anon_sym_LT, - [anon_sym_LT_EQ] = anon_sym_LT_EQ, - [anon_sym_LT_DOT] = anon_sym_LT_DOT, - [anon_sym_LT_EQ_DOT] = anon_sym_LT_EQ_DOT, - [anon_sym_GT] = anon_sym_GT, - [anon_sym_GT_EQ] = anon_sym_GT_EQ, - [anon_sym_GT_DOT] = anon_sym_GT_DOT, - [anon_sym_GT_EQ_DOT] = anon_sym_GT_EQ_DOT, - [anon_sym_PIPE_GT] = anon_sym_PIPE_GT, - [anon_sym_PLUS] = anon_sym_PLUS, - [anon_sym_PLUS_DOT] = anon_sym_PLUS_DOT, - [anon_sym_DASH_DOT] = anon_sym_DASH_DOT, - [anon_sym_STAR] = anon_sym_STAR, - [anon_sym_STAR_DOT] = anon_sym_STAR_DOT, - [anon_sym_SLASH_DOT] = anon_sym_SLASH_DOT, - [anon_sym_PERCENT] = anon_sym_PERCENT, - [anon_sym_LT_GT] = anon_sym_LT_GT, - [anon_sym_todo] = anon_sym_todo, - [anon_sym_panic] = anon_sym_panic, - [anon_sym_echo] = anon_sym_echo, - [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, - [anon_sym_case] = anon_sym_case, - [anon_sym_PIPE] = anon_sym_PIPE, - [anon_sym_let] = anon_sym_let, - [anon_sym_assert] = anon_sym_assert, - [anon_sym_use] = anon_sym_use, - [anon_sym_LT_DASH] = anon_sym_LT_DASH, - [anon_sym_BANG] = anon_sym_BANG, - [sym_visibility_modifier] = sym_visibility_modifier, - [sym_opacity_modifier] = sym_opacity_modifier, - [anon_sym_DQUOTE] = anon_sym_DQUOTE, - [anon_sym_DQUOTE2] = anon_sym_DQUOTE, - [aux_sym_escape_sequence_token1] = aux_sym_escape_sequence_token1, - [aux_sym_escape_sequence_token2] = aux_sym_escape_sequence_token2, - [sym_float] = sym_float, - [sym__hex] = sym__hex, - [sym__decimal] = sym__decimal, - [sym__octal] = sym__octal, - [sym__binary] = sym__binary, - [anon_sym_binary] = anon_sym_binary, - [anon_sym_bytes] = anon_sym_bytes, - [anon_sym_int] = anon_sym_int, - [anon_sym_float] = anon_sym_float, - [anon_sym_bit_string] = anon_sym_bit_string, - [anon_sym_bits] = anon_sym_bits, - [anon_sym_utf8] = anon_sym_utf8, - [anon_sym_utf16] = anon_sym_utf16, - [anon_sym_utf32] = anon_sym_utf32, - [anon_sym_utf8_codepoint] = anon_sym_utf8_codepoint, - [anon_sym_utf16_codepoint] = anon_sym_utf16_codepoint, - [anon_sym_utf32_codepoint] = anon_sym_utf32_codepoint, - [anon_sym_signed] = anon_sym_signed, - [anon_sym_unsigned] = anon_sym_unsigned, - [anon_sym_big] = anon_sym_big, - [anon_sym_little] = anon_sym_little, - [anon_sym_native] = anon_sym_native, - [anon_sym_unit] = anon_sym_unit, - [sym__discard_name] = sym__discard_name, - [sym__name] = sym__name, - [sym__upname] = sym__upname, - [sym_quoted_content] = sym_quoted_content, - [sym_source_file] = sym_source_file, - [sym__module_statement] = sym__module_statement, - [sym_target_group] = sym_target_group, - [sym_target] = sym_target, - [sym_attribute] = sym_attribute, - [sym__attribute_arguments] = sym_arguments, - [sym_attribute_value] = sym_attribute_value, - [sym_import] = sym_import, - [sym_module] = sym_module, - [sym_unqualified_imports] = sym_unqualified_imports, - [sym_unqualified_import] = sym_unqualified_import, - [sym_constant] = sym_constant, - [sym__constant_value] = sym__constant_value, - [sym_constant_tuple] = sym_tuple, - [sym_constant_list] = sym_list, - [sym__constant_bit_string] = sym__constant_bit_string, - [sym_constant_bit_string_segment] = sym_constant_bit_string_segment, - [sym_constant_bit_string_segment_options] = sym_constant_bit_string_segment_options, - [sym__constant_bit_string_segment_option] = sym__constant_bit_string_segment_option, - [sym__constant_bit_string_named_segment_option] = sym__constant_bit_string_named_segment_option, - [sym__constant_bit_string_segment_option_size] = sym__constant_bit_string_segment_option_size, - [sym_constant_record] = sym_record, - [sym_constant_record_arguments] = sym_arguments, - [sym_constant_record_argument] = sym_argument, - [sym_constant_field_access] = sym_field_access, - [sym__constant_type] = sym__constant_type, - [sym__constant_type_annotation] = sym__constant_type_annotation, - [sym_constant_tuple_type] = sym_tuple_type, - [sym_constant_function_type] = sym_function_type, - [sym_constant_function_parameter_types] = sym_function_parameter_types, - [sym_constant_type] = sym_type, - [sym_constant_type_arguments] = sym_type_arguments, - [sym_constant_type_argument] = sym_type_argument, - [sym_external_type] = sym_external_type, - [sym_external_function] = sym_external_function, - [sym_external_function_parameters] = sym_function_parameters, - [sym_external_function_parameter] = sym_function_parameter, - [sym_external_function_body] = sym_external_function_body, - [sym_function] = sym_function, - [sym_function_parameters] = sym_function_parameters, - [sym_function_parameter] = sym_function_parameter, - [sym__labeled_discard_param] = sym__labeled_discard_param, - [sym__discard_param] = sym__discard_param, - [sym__labeled_name_param] = sym__labeled_name_param, - [sym__name_param] = sym__name_param, - [aux_sym__statement_seq] = aux_sym__statement_seq, - [sym__statement] = sym__statement, - [sym__expression] = sym__expression, - [sym_binary_expression] = sym_binary_expression, - [sym__expression_unit] = sym__expression_unit, - [sym_record] = sym_record, - [sym_todo] = sym_todo, - [sym_panic] = sym_panic, - [sym_pipeline_echo] = sym_pipeline_echo, - [sym_echo] = sym_echo, - [sym_tuple] = sym_tuple, - [sym_list] = sym_list, - [sym__expression_bit_string] = sym__constant_bit_string, - [sym_expression_bit_string_segment] = sym_constant_bit_string_segment, - [sym_expression_bit_string_segment_options] = sym_constant_bit_string_segment_options, - [sym__expression_bit_string_segment_option] = sym__expression_bit_string_segment_option, - [sym__expression_bit_string_named_segment_option] = sym__expression_bit_string_named_segment_option, - [sym__expression_bit_string_segment_option_size] = sym__constant_bit_string_segment_option_size, - [sym_anonymous_function] = sym_anonymous_function, - [sym_anonymous_function_parameters] = sym_function_parameters, - [sym_anonymous_function_parameter] = sym_function_parameter, - [sym_block] = sym_block, - [sym_case] = sym_case, - [sym_case_subjects] = sym_case_subjects, - [sym_case_clauses] = sym_case_clauses, - [sym_case_clause] = sym_case_clause, - [sym_case_clause_patterns] = sym_case_clause_patterns, - [sym_case_clause_pattern] = sym_case_clause_pattern, - [sym_case_clause_guard] = sym_case_clause_guard, - [sym__case_clause_guard_expression] = sym__case_clause_guard_expression, - [sym__case_clause_guard_binary_expression] = sym_binary_expression, - [sym__case_clause_guard_unit] = sym__case_clause_guard_unit, - [sym__case_clause_tuple_access] = sym_tuple_access, - [sym_let_assert] = sym_let_assert, - [sym_assert] = sym_assert, - [sym_let] = sym_let, - [sym_use] = sym_use, - [sym_use_assignments] = sym_use_assignments, - [sym_use_assignment] = sym_use_assignment, - [sym_boolean_negation] = sym_boolean_negation, - [sym_integer_negation] = sym_integer_negation, - [sym__assignment] = sym__assignment, - [sym_record_update] = sym_record_update, - [sym_record_update_arguments] = sym_record_update_arguments, - [sym_record_update_argument] = sym_record_update_argument, - [sym__maybe_tuple_expression] = sym__maybe_tuple_expression, - [sym_tuple_access] = sym_tuple_access, - [sym__maybe_record_expression] = sym__maybe_record_expression, - [sym_field_access] = sym_field_access, - [sym__maybe_function_expression] = sym__maybe_function_expression, - [sym_arguments] = sym_arguments, - [sym_argument] = sym_argument, - [sym_hole] = sym_hole, - [sym_function_call] = sym_function_call, - [sym__pattern_expression] = sym__pattern_expression, - [sym__pattern_binary_expression] = sym_binary_expression, - [sym__pattern] = sym__pattern, - [sym_record_pattern] = sym_record_pattern, - [sym_record_pattern_arguments] = sym_record_pattern_arguments, - [sym_record_pattern_argument] = sym_record_pattern_argument, - [sym_pattern_spread] = sym_pattern_spread, - [sym_tuple_pattern] = sym_tuple_pattern, - [sym__pattern_bit_string] = sym__pattern_bit_string, - [sym_pattern_bit_string_segment] = sym_constant_bit_string_segment, - [sym_pattern_bit_string_segment_options] = sym_constant_bit_string_segment_options, - [sym__pattern_bit_string_segment_option] = sym__pattern_bit_string_segment_option, - [sym__pattern_bit_string_named_segment_option] = sym__pattern_bit_string_named_segment_option, - [sym__pattern_bit_string_segment_option_size] = sym__constant_bit_string_segment_option_size, - [sym__pattern_bit_string_segment_argument] = sym__pattern_bit_string_segment_argument, - [sym_list_pattern] = sym_list_pattern, - [sym_list_pattern_tail] = sym_list_pattern_tail, - [sym_type_definition] = sym_type_definition, - [sym_data_constructors] = sym_data_constructors, - [sym_data_constructor] = sym_data_constructor, - [sym_data_constructor_arguments] = sym_data_constructor_arguments, - [sym_data_constructor_argument] = sym_data_constructor_argument, - [sym_type_alias] = sym_type_alias, - [sym_string] = sym_string, - [sym_escape_sequence] = sym_escape_sequence, - [sym_integer] = sym_integer, - [sym__bit_string_segment_option] = sym__constant_bit_string_segment_option_size, - [sym__type] = sym__type, - [sym__type_annotation] = sym__type_annotation, - [sym_type_hole] = sym_type_hole, - [sym_tuple_type] = sym_tuple_type, - [sym_function_type] = sym_function_type, - [sym_function_parameter_types] = sym_function_parameter_types, - [sym_type] = sym_type, - [sym_type_arguments] = sym_type_arguments, - [sym_type_argument] = sym_type_argument, - [sym_type_var] = sym_type_var, - [sym_type_name] = sym_type_name, - [sym_type_parameters] = sym_type_parameters, - [sym_type_parameter] = sym_type_parameter, - [sym_identifier] = sym_identifier, - [sym_label] = sym_label, - [sym_discard] = sym_discard, - [sym_type_identifier] = sym_type_identifier, - [sym_remote_type_identifier] = sym_remote_type_identifier, - [sym_constructor_name] = sym_constructor_name, - [sym_remote_constructor_name] = sym_remote_constructor_name, - [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, - [aux_sym_target_group_repeat1] = aux_sym_target_group_repeat1, - [aux_sym__attribute_arguments_repeat1] = aux_sym__attribute_arguments_repeat1, - [aux_sym_module_repeat1] = aux_sym_module_repeat1, - [aux_sym_unqualified_imports_repeat1] = aux_sym_unqualified_imports_repeat1, - [aux_sym_constant_tuple_repeat1] = aux_sym_constant_tuple_repeat1, - [aux_sym__constant_bit_string_repeat1] = aux_sym__constant_bit_string_repeat1, - [aux_sym_constant_bit_string_segment_options_repeat1] = aux_sym_constant_bit_string_segment_options_repeat1, - [aux_sym_constant_record_arguments_repeat1] = aux_sym_constant_record_arguments_repeat1, - [aux_sym_constant_tuple_type_repeat1] = aux_sym_constant_tuple_type_repeat1, - [aux_sym_constant_type_arguments_repeat1] = aux_sym_constant_type_arguments_repeat1, - [aux_sym_external_function_parameters_repeat1] = aux_sym_external_function_parameters_repeat1, - [aux_sym_function_parameters_repeat1] = aux_sym_function_parameters_repeat1, - [aux_sym_tuple_repeat1] = aux_sym_tuple_repeat1, - [aux_sym__expression_bit_string_repeat1] = aux_sym__expression_bit_string_repeat1, - [aux_sym_expression_bit_string_segment_options_repeat1] = aux_sym_expression_bit_string_segment_options_repeat1, - [aux_sym_anonymous_function_parameters_repeat1] = aux_sym_anonymous_function_parameters_repeat1, - [aux_sym_case_clauses_repeat1] = aux_sym_case_clauses_repeat1, - [aux_sym_case_clause_patterns_repeat1] = aux_sym_case_clause_patterns_repeat1, - [aux_sym_case_clause_pattern_repeat1] = aux_sym_case_clause_pattern_repeat1, - [aux_sym_use_assignments_repeat1] = aux_sym_use_assignments_repeat1, - [aux_sym_record_update_arguments_repeat1] = aux_sym_record_update_arguments_repeat1, - [aux_sym_arguments_repeat1] = aux_sym_arguments_repeat1, - [aux_sym_record_pattern_arguments_repeat1] = aux_sym_record_pattern_arguments_repeat1, - [aux_sym__pattern_bit_string_repeat1] = aux_sym__pattern_bit_string_repeat1, - [aux_sym_pattern_bit_string_segment_options_repeat1] = aux_sym_pattern_bit_string_segment_options_repeat1, - [aux_sym_data_constructors_repeat1] = aux_sym_data_constructors_repeat1, - [aux_sym_data_constructor_arguments_repeat1] = aux_sym_data_constructor_arguments_repeat1, - [aux_sym_string_repeat1] = aux_sym_string_repeat1, - [aux_sym_tuple_type_repeat1] = aux_sym_tuple_type_repeat1, - [aux_sym_type_arguments_repeat1] = aux_sym_type_arguments_repeat1, - [aux_sym_type_parameters_repeat1] = aux_sym_type_parameters_repeat1, -}; - -static const TSSymbolMetadata ts_symbol_metadata[] = { - [ts_builtin_sym_end] = { - .visible = false, - .named = true, - }, - [sym_module_comment] = { - .visible = true, - .named = true, - }, - [sym_statement_comment] = { - .visible = true, - .named = true, - }, - [sym_comment] = { - .visible = true, - .named = true, - }, - [anon_sym_if] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_erlang] = { - .visible = true, - .named = false, - }, - [anon_sym_javascript] = { - .visible = true, - .named = false, - }, - [anon_sym_AT] = { - .visible = true, - .named = false, - }, - [anon_sym_LPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_COMMA] = { - .visible = true, - .named = false, - }, - [anon_sym_RPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON] = { - .visible = true, - .named = false, - }, - [anon_sym_import] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_as] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH] = { - .visible = true, - .named = false, - }, - [anon_sym_type] = { - .visible = true, - .named = false, - }, - [anon_sym_const] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_POUND] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_size] = { - .visible = true, - .named = false, - }, - [anon_sym_fn] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_external] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_EQ_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_EQ_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_PERCENT] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_todo] = { - .visible = true, - .named = false, - }, - [anon_sym_panic] = { - .visible = true, - .named = false, - }, - [anon_sym_echo] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_case] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_let] = { - .visible = true, - .named = false, - }, - [anon_sym_assert] = { - .visible = true, - .named = false, - }, - [anon_sym_use] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG] = { - .visible = true, - .named = false, - }, - [sym_visibility_modifier] = { - .visible = true, - .named = true, - }, - [sym_opacity_modifier] = { - .visible = true, - .named = true, - }, - [anon_sym_DQUOTE] = { - .visible = true, - .named = false, - }, - [anon_sym_DQUOTE2] = { - .visible = true, - .named = false, - }, - [aux_sym_escape_sequence_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_escape_sequence_token2] = { - .visible = false, - .named = false, - }, - [sym_float] = { - .visible = true, - .named = true, - }, - [sym__hex] = { - .visible = false, - .named = true, - }, - [sym__decimal] = { - .visible = false, - .named = true, - }, - [sym__octal] = { - .visible = false, - .named = true, - }, - [sym__binary] = { - .visible = false, - .named = true, - }, - [anon_sym_binary] = { - .visible = true, - .named = false, - }, - [anon_sym_bytes] = { - .visible = true, - .named = false, - }, - [anon_sym_int] = { - .visible = true, - .named = false, - }, - [anon_sym_float] = { - .visible = true, - .named = false, - }, - [anon_sym_bit_string] = { - .visible = true, - .named = false, - }, - [anon_sym_bits] = { - .visible = true, - .named = false, - }, - [anon_sym_utf8] = { - .visible = true, - .named = false, - }, - [anon_sym_utf16] = { - .visible = true, - .named = false, - }, - [anon_sym_utf32] = { - .visible = true, - .named = false, - }, - [anon_sym_utf8_codepoint] = { - .visible = true, - .named = false, - }, - [anon_sym_utf16_codepoint] = { - .visible = true, - .named = false, - }, - [anon_sym_utf32_codepoint] = { - .visible = true, - .named = false, - }, - [anon_sym_signed] = { - .visible = true, - .named = false, - }, - [anon_sym_unsigned] = { - .visible = true, - .named = false, - }, - [anon_sym_big] = { - .visible = true, - .named = false, - }, - [anon_sym_little] = { - .visible = true, - .named = false, - }, - [anon_sym_native] = { - .visible = true, - .named = false, - }, - [anon_sym_unit] = { - .visible = true, - .named = false, - }, - [sym__discard_name] = { - .visible = false, - .named = true, - }, - [sym__name] = { - .visible = false, - .named = true, - }, - [sym__upname] = { - .visible = false, - .named = true, - }, - [sym_quoted_content] = { - .visible = true, - .named = true, - }, - [sym_source_file] = { - .visible = true, - .named = true, - }, - [sym__module_statement] = { - .visible = false, - .named = true, - }, - [sym_target_group] = { - .visible = true, - .named = true, - }, - [sym_target] = { - .visible = true, - .named = true, - }, - [sym_attribute] = { - .visible = true, - .named = true, - }, - [sym__attribute_arguments] = { - .visible = true, - .named = true, - }, - [sym_attribute_value] = { - .visible = true, - .named = true, - }, - [sym_import] = { - .visible = true, - .named = true, - }, - [sym_module] = { - .visible = true, - .named = true, - }, - [sym_unqualified_imports] = { - .visible = true, - .named = true, - }, - [sym_unqualified_import] = { - .visible = true, - .named = true, - }, - [sym_constant] = { - .visible = true, - .named = true, - }, - [sym__constant_value] = { - .visible = false, - .named = true, - }, - [sym_constant_tuple] = { - .visible = true, - .named = true, - }, - [sym_constant_list] = { - .visible = true, - .named = true, - }, - [sym__constant_bit_string] = { - .visible = true, - .named = true, - }, - [sym_constant_bit_string_segment] = { - .visible = true, - .named = true, - }, - [sym_constant_bit_string_segment_options] = { - .visible = true, - .named = true, - }, - [sym__constant_bit_string_segment_option] = { - .visible = false, - .named = true, - }, - [sym__constant_bit_string_named_segment_option] = { - .visible = false, - .named = true, - }, - [sym__constant_bit_string_segment_option_size] = { - .visible = true, - .named = true, - }, - [sym_constant_record] = { - .visible = true, - .named = true, - }, - [sym_constant_record_arguments] = { - .visible = true, - .named = true, - }, - [sym_constant_record_argument] = { - .visible = true, - .named = true, - }, - [sym_constant_field_access] = { - .visible = true, - .named = true, - }, - [sym__constant_type] = { - .visible = false, - .named = true, - }, - [sym__constant_type_annotation] = { - .visible = false, - .named = true, - }, - [sym_constant_tuple_type] = { - .visible = true, - .named = true, - }, - [sym_constant_function_type] = { - .visible = true, - .named = true, - }, - [sym_constant_function_parameter_types] = { - .visible = true, - .named = true, - }, - [sym_constant_type] = { - .visible = true, - .named = true, - }, - [sym_constant_type_arguments] = { - .visible = true, - .named = true, - }, - [sym_constant_type_argument] = { - .visible = true, - .named = true, - }, - [sym_external_type] = { - .visible = true, - .named = true, - }, - [sym_external_function] = { - .visible = true, - .named = true, - }, - [sym_external_function_parameters] = { - .visible = true, - .named = true, - }, - [sym_external_function_parameter] = { - .visible = true, - .named = true, - }, - [sym_external_function_body] = { - .visible = true, - .named = true, - }, - [sym_function] = { - .visible = true, - .named = true, - }, - [sym_function_parameters] = { - .visible = true, - .named = true, - }, - [sym_function_parameter] = { - .visible = true, - .named = true, - }, - [sym__labeled_discard_param] = { - .visible = false, - .named = true, - }, - [sym__discard_param] = { - .visible = false, - .named = true, - }, - [sym__labeled_name_param] = { - .visible = false, - .named = true, - }, - [sym__name_param] = { - .visible = false, - .named = true, - }, - [aux_sym__statement_seq] = { - .visible = false, - .named = false, - }, - [sym__statement] = { - .visible = false, - .named = true, - }, - [sym__expression] = { - .visible = false, - .named = true, - }, - [sym_binary_expression] = { - .visible = true, - .named = true, - }, - [sym__expression_unit] = { - .visible = false, - .named = true, - }, - [sym_record] = { - .visible = true, - .named = true, - }, - [sym_todo] = { - .visible = true, - .named = true, - }, - [sym_panic] = { - .visible = true, - .named = true, - }, - [sym_pipeline_echo] = { - .visible = true, - .named = true, - }, - [sym_echo] = { - .visible = true, - .named = true, - }, - [sym_tuple] = { - .visible = true, - .named = true, - }, - [sym_list] = { - .visible = true, - .named = true, - }, - [sym__expression_bit_string] = { - .visible = true, - .named = true, - }, - [sym_expression_bit_string_segment] = { - .visible = true, - .named = true, - }, - [sym_expression_bit_string_segment_options] = { - .visible = true, - .named = true, - }, - [sym__expression_bit_string_segment_option] = { - .visible = false, - .named = true, - }, - [sym__expression_bit_string_named_segment_option] = { - .visible = false, - .named = true, - }, - [sym__expression_bit_string_segment_option_size] = { - .visible = true, - .named = true, - }, - [sym_anonymous_function] = { - .visible = true, - .named = true, - }, - [sym_anonymous_function_parameters] = { - .visible = true, - .named = true, - }, - [sym_anonymous_function_parameter] = { - .visible = true, - .named = true, - }, - [sym_block] = { - .visible = true, - .named = true, - }, - [sym_case] = { - .visible = true, - .named = true, - }, - [sym_case_subjects] = { - .visible = true, - .named = true, - }, - [sym_case_clauses] = { - .visible = true, - .named = true, - }, - [sym_case_clause] = { - .visible = true, - .named = true, - }, - [sym_case_clause_patterns] = { - .visible = true, - .named = true, - }, - [sym_case_clause_pattern] = { - .visible = true, - .named = true, - }, - [sym_case_clause_guard] = { - .visible = true, - .named = true, - }, - [sym__case_clause_guard_expression] = { - .visible = false, - .named = true, - }, - [sym__case_clause_guard_binary_expression] = { - .visible = true, - .named = true, - }, - [sym__case_clause_guard_unit] = { - .visible = false, - .named = true, - }, - [sym__case_clause_tuple_access] = { - .visible = true, - .named = true, - }, - [sym_let_assert] = { - .visible = true, - .named = true, - }, - [sym_assert] = { - .visible = true, - .named = true, - }, - [sym_let] = { - .visible = true, - .named = true, - }, - [sym_use] = { - .visible = true, - .named = true, - }, - [sym_use_assignments] = { - .visible = true, - .named = true, - }, - [sym_use_assignment] = { - .visible = true, - .named = true, - }, - [sym_boolean_negation] = { - .visible = true, - .named = true, - }, - [sym_integer_negation] = { - .visible = true, - .named = true, - }, - [sym__assignment] = { - .visible = false, - .named = true, - }, - [sym_record_update] = { - .visible = true, - .named = true, - }, - [sym_record_update_arguments] = { - .visible = true, - .named = true, - }, - [sym_record_update_argument] = { - .visible = true, - .named = true, - }, - [sym__maybe_tuple_expression] = { - .visible = false, - .named = true, - }, - [sym_tuple_access] = { - .visible = true, - .named = true, - }, - [sym__maybe_record_expression] = { - .visible = false, - .named = true, - }, - [sym_field_access] = { - .visible = true, - .named = true, - }, - [sym__maybe_function_expression] = { - .visible = false, - .named = true, - }, - [sym_arguments] = { - .visible = true, - .named = true, - }, - [sym_argument] = { - .visible = true, - .named = true, - }, - [sym_hole] = { - .visible = true, - .named = true, - }, - [sym_function_call] = { - .visible = true, - .named = true, - }, - [sym__pattern_expression] = { - .visible = false, - .named = true, - }, - [sym__pattern_binary_expression] = { - .visible = true, - .named = true, - }, - [sym__pattern] = { - .visible = false, - .named = true, - }, - [sym_record_pattern] = { - .visible = true, - .named = true, - }, - [sym_record_pattern_arguments] = { - .visible = true, - .named = true, - }, - [sym_record_pattern_argument] = { - .visible = true, - .named = true, - }, - [sym_pattern_spread] = { - .visible = true, - .named = true, - }, - [sym_tuple_pattern] = { - .visible = true, - .named = true, - }, - [sym__pattern_bit_string] = { - .visible = true, - .named = true, - }, - [sym_pattern_bit_string_segment] = { - .visible = true, - .named = true, - }, - [sym_pattern_bit_string_segment_options] = { - .visible = true, - .named = true, - }, - [sym__pattern_bit_string_segment_option] = { - .visible = false, - .named = true, - }, - [sym__pattern_bit_string_named_segment_option] = { - .visible = false, - .named = true, - }, - [sym__pattern_bit_string_segment_option_size] = { - .visible = true, - .named = true, - }, - [sym__pattern_bit_string_segment_argument] = { - .visible = false, - .named = true, - }, - [sym_list_pattern] = { - .visible = true, - .named = true, - }, - [sym_list_pattern_tail] = { - .visible = true, - .named = true, - }, - [sym_type_definition] = { - .visible = true, - .named = true, - }, - [sym_data_constructors] = { - .visible = true, - .named = true, - }, - [sym_data_constructor] = { - .visible = true, - .named = true, - }, - [sym_data_constructor_arguments] = { - .visible = true, - .named = true, - }, - [sym_data_constructor_argument] = { - .visible = true, - .named = true, - }, - [sym_type_alias] = { - .visible = true, - .named = true, - }, - [sym_string] = { - .visible = true, - .named = true, - }, - [sym_escape_sequence] = { - .visible = true, - .named = true, - }, - [sym_integer] = { - .visible = true, - .named = true, - }, - [sym__bit_string_segment_option] = { - .visible = true, - .named = true, - }, - [sym__type] = { - .visible = false, - .named = true, - }, - [sym__type_annotation] = { - .visible = false, - .named = true, - }, - [sym_type_hole] = { - .visible = true, - .named = true, - }, - [sym_tuple_type] = { - .visible = true, - .named = true, - }, - [sym_function_type] = { - .visible = true, - .named = true, - }, - [sym_function_parameter_types] = { - .visible = true, - .named = true, - }, - [sym_type] = { - .visible = true, - .named = true, - }, - [sym_type_arguments] = { - .visible = true, - .named = true, - }, - [sym_type_argument] = { - .visible = true, - .named = true, - }, - [sym_type_var] = { - .visible = true, - .named = true, - }, - [sym_type_name] = { - .visible = true, - .named = true, - }, - [sym_type_parameters] = { - .visible = true, - .named = true, - }, - [sym_type_parameter] = { - .visible = true, - .named = true, - }, - [sym_identifier] = { - .visible = true, - .named = true, - }, - [sym_label] = { - .visible = true, - .named = true, - }, - [sym_discard] = { - .visible = true, - .named = true, - }, - [sym_type_identifier] = { - .visible = true, - .named = true, - }, - [sym_remote_type_identifier] = { - .visible = true, - .named = true, - }, - [sym_constructor_name] = { - .visible = true, - .named = true, - }, - [sym_remote_constructor_name] = { - .visible = true, - .named = true, - }, - [aux_sym_source_file_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_target_group_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__attribute_arguments_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_module_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_unqualified_imports_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_constant_tuple_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__constant_bit_string_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_constant_bit_string_segment_options_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_constant_record_arguments_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_constant_tuple_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_constant_type_arguments_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_external_function_parameters_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_function_parameters_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_tuple_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__expression_bit_string_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_expression_bit_string_segment_options_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_anonymous_function_parameters_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_case_clauses_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_case_clause_patterns_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_case_clause_pattern_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_use_assignments_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_record_update_arguments_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_arguments_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_record_pattern_arguments_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__pattern_bit_string_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_pattern_bit_string_segment_options_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_data_constructors_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_data_constructor_arguments_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_string_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_tuple_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_type_arguments_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_type_parameters_repeat1] = { - .visible = false, - .named = false, - }, -}; - -enum { - field_alias = 1, - field_arguments = 2, - field_assign = 3, - field_assignments = 4, - field_body = 5, - field_clauses = 6, - field_constructor = 7, - field_field = 8, - field_function = 9, - field_guard = 10, - field_imports = 11, - field_index = 12, - field_label = 13, - field_left = 14, - field_message = 15, - field_module = 16, - field_name = 17, - field_operator = 18, - field_options = 19, - field_parameter_types = 20, - field_parameters = 21, - field_pattern = 22, - field_patterns = 23, - field_record = 24, - field_return_type = 25, - field_right = 26, - field_spread = 27, - field_subjects = 28, - field_target = 29, - field_tuple = 30, - field_type = 31, - field_value = 32, -}; - -static const char * const ts_field_names[] = { - [0] = NULL, - [field_alias] = "alias", - [field_arguments] = "arguments", - [field_assign] = "assign", - [field_assignments] = "assignments", - [field_body] = "body", - [field_clauses] = "clauses", - [field_constructor] = "constructor", - [field_field] = "field", - [field_function] = "function", - [field_guard] = "guard", - [field_imports] = "imports", - [field_index] = "index", - [field_label] = "label", - [field_left] = "left", - [field_message] = "message", - [field_module] = "module", - [field_name] = "name", - [field_operator] = "operator", - [field_options] = "options", - [field_parameter_types] = "parameter_types", - [field_parameters] = "parameters", - [field_pattern] = "pattern", - [field_patterns] = "patterns", - [field_record] = "record", - [field_return_type] = "return_type", - [field_right] = "right", - [field_spread] = "spread", - [field_subjects] = "subjects", - [field_target] = "target", - [field_tuple] = "tuple", - [field_type] = "type", - [field_value] = "value", -}; - -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [1] = {.index = 0, .length = 1}, - [2] = {.index = 1, .length = 1}, - [3] = {.index = 2, .length = 1}, - [4] = {.index = 3, .length = 1}, - [5] = {.index = 4, .length = 4}, - [6] = {.index = 8, .length = 3}, - [7] = {.index = 11, .length = 1}, - [8] = {.index = 12, .length = 1}, - [9] = {.index = 13, .length = 2}, - [10] = {.index = 15, .length = 2}, - [11] = {.index = 17, .length = 2}, - [12] = {.index = 19, .length = 2}, - [13] = {.index = 21, .length = 1}, - [14] = {.index = 22, .length = 2}, - [15] = {.index = 24, .length = 2}, - [16] = {.index = 26, .length = 1}, - [17] = {.index = 27, .length = 2}, - [18] = {.index = 29, .length = 4}, - [19] = {.index = 33, .length = 1}, - [20] = {.index = 34, .length = 2}, - [21] = {.index = 36, .length = 3}, - [22] = {.index = 39, .length = 2}, - [23] = {.index = 41, .length = 2}, - [24] = {.index = 43, .length = 2}, - [25] = {.index = 45, .length = 1}, - [26] = {.index = 46, .length = 2}, - [27] = {.index = 48, .length = 2}, - [28] = {.index = 50, .length = 1}, - [29] = {.index = 51, .length = 2}, - [30] = {.index = 53, .length = 3}, - [31] = {.index = 56, .length = 2}, - [32] = {.index = 58, .length = 2}, - [33] = {.index = 60, .length = 3}, - [34] = {.index = 63, .length = 1}, - [35] = {.index = 64, .length = 1}, - [36] = {.index = 65, .length = 2}, - [37] = {.index = 67, .length = 3}, - [38] = {.index = 70, .length = 2}, - [39] = {.index = 72, .length = 2}, - [40] = {.index = 74, .length = 2}, - [41] = {.index = 76, .length = 2}, - [42] = {.index = 78, .length = 1}, - [43] = {.index = 79, .length = 3}, - [44] = {.index = 82, .length = 1}, - [45] = {.index = 83, .length = 3}, - [46] = {.index = 86, .length = 3}, - [47] = {.index = 89, .length = 2}, - [48] = {.index = 91, .length = 3}, - [49] = {.index = 94, .length = 1}, - [50] = {.index = 95, .length = 2}, - [51] = {.index = 97, .length = 2}, - [52] = {.index = 99, .length = 1}, - [53] = {.index = 100, .length = 2}, - [54] = {.index = 102, .length = 4}, - [55] = {.index = 106, .length = 5}, - [56] = {.index = 111, .length = 4}, - [57] = {.index = 115, .length = 2}, - [58] = {.index = 117, .length = 3}, - [59] = {.index = 120, .length = 2}, - [60] = {.index = 122, .length = 3}, - [61] = {.index = 125, .length = 1}, - [62] = {.index = 126, .length = 1}, - [63] = {.index = 127, .length = 4}, - [64] = {.index = 131, .length = 2}, - [65] = {.index = 133, .length = 2}, - [66] = {.index = 135, .length = 2}, - [67] = {.index = 137, .length = 3}, - [68] = {.index = 140, .length = 3}, - [69] = {.index = 143, .length = 3}, - [70] = {.index = 146, .length = 2}, - [71] = {.index = 148, .length = 2}, - [72] = {.index = 150, .length = 1}, - [73] = {.index = 151, .length = 2}, - [74] = {.index = 153, .length = 3}, - [75] = {.index = 156, .length = 4}, - [76] = {.index = 160, .length = 3}, - [77] = {.index = 163, .length = 2}, - [78] = {.index = 165, .length = 4}, - [79] = {.index = 169, .length = 4}, -}; - -static const TSFieldMapEntry ts_field_map_entries[] = { - [0] = - {field_name, 0}, - [1] = - {field_name, 1}, - [2] = - {field_module, 1}, - [3] = - {field_value, 0}, - [4] = - {field_assign, 1, .inherited = true}, - {field_pattern, 1, .inherited = true}, - {field_type, 1, .inherited = true}, - {field_value, 1, .inherited = true}, - [8] = - {field_left, 0, .inherited = true}, - {field_operator, 0, .inherited = true}, - {field_right, 0, .inherited = true}, - [11] = - {field_value, 1}, - [12] = - {field_assign, 0, .inherited = true}, - [13] = - {field_arguments, 1}, - {field_function, 0}, - [15] = - {field_arguments, 1}, - {field_name, 0}, - [17] = - {field_arguments, 2}, - {field_name, 1}, - [19] = - {field_name, 0}, - {field_parameters, 1}, - [21] = - {field_name, 0, .inherited = true}, - [22] = - {field_body, 2}, - {field_parameters, 1}, - [24] = - {field_name, 1}, - {field_parameters, 2}, - [26] = - {field_message, 2}, - [27] = - {field_assign, 0, .inherited = true}, - {field_value, 0}, - [29] = - {field_assign, 2, .inherited = true}, - {field_pattern, 2, .inherited = true}, - {field_type, 2, .inherited = true}, - {field_value, 2, .inherited = true}, - [33] = - {field_value, 2}, - [34] = - {field_assign, 0, .inherited = true}, - {field_type, 1, .inherited = true}, - [36] = - {field_left, 0}, - {field_operator, 1}, - {field_right, 2}, - [39] = - {field_index, 2}, - {field_tuple, 0}, - [41] = - {field_field, 2}, - {field_record, 0}, - [43] = - {field_module, 0}, - {field_name, 2}, - [45] = - {field_target, 1}, - [46] = - {field_imports, 3}, - {field_module, 1}, - [48] = - {field_alias, 3}, - {field_module, 1}, - [50] = - {field_type, 1}, - [51] = - {field_name, 1}, - {field_value, 3}, - [53] = - {field_options, 1}, - {field_options, 2}, - {field_value, 0}, - [56] = - {field_name, 0, .inherited = true}, - {field_type, 1, .inherited = true}, - [58] = - {field_label, 0, .inherited = true}, - {field_name, 0, .inherited = true}, - [60] = - {field_body, 3}, - {field_name, 1}, - {field_parameters, 2}, - [63] = - {field_subjects, 1}, - [64] = - {field_assign, 1, .inherited = true}, - [65] = - {field_assign, 1}, - {field_assign, 2}, - [67] = - {field_assign, 0, .inherited = true}, - {field_pattern, 0}, - {field_value, 2}, - [70] = - {field_assign, 0, .inherited = true}, - {field_pattern, 0}, - [72] = - {field_message, 3}, - {field_value, 1}, - [74] = - {field_assignments, 1}, - {field_value, 3}, - [76] = - {field_name, 2}, - {field_parameters, 3}, - [78] = - {field_label, 0}, - [79] = - {field_name, 1}, - {field_type, 2, .inherited = true}, - {field_value, 4}, - [82] = - {field_spread, 3}, - [83] = - {field_body, 4}, - {field_parameters, 1}, - {field_return_type, 3}, - [86] = - {field_label, 0, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_type, 1, .inherited = true}, - [89] = - {field_label, 0}, - {field_name, 1}, - [91] = - {field_name, 1}, - {field_parameters, 2}, - {field_return_type, 4}, - [94] = - {field_type, 0}, - [95] = - {field_clauses, 3}, - {field_subjects, 1}, - [97] = - {field_assign, 0, .inherited = true}, - {field_assign, 1, .inherited = true}, - [99] = - {field_assign, 2, .inherited = true}, - [100] = - {field_assign, 1, .inherited = true}, - {field_assign, 2, .inherited = true}, - [102] = - {field_assign, 0, .inherited = true}, - {field_options, 1}, - {field_options, 2}, - {field_value, 0}, - [106] = - {field_assign, 2, .inherited = true}, - {field_message, 4}, - {field_pattern, 2, .inherited = true}, - {field_type, 2, .inherited = true}, - {field_value, 2, .inherited = true}, - [111] = - {field_assign, 0, .inherited = true}, - {field_pattern, 0}, - {field_type, 1, .inherited = true}, - {field_value, 3}, - [115] = - {field_name, 2}, - {field_value, 4}, - [117] = - {field_body, 4}, - {field_name, 2}, - {field_parameters, 3}, - [120] = - {field_label, 0}, - {field_value, 2}, - [122] = - {field_alias, 5}, - {field_imports, 3}, - {field_module, 1}, - [125] = - {field_return_type, 2}, - [126] = - {field_spread, 4}, - [127] = - {field_body, 5}, - {field_name, 1}, - {field_parameters, 2}, - {field_return_type, 4}, - [131] = - {field_index, 0, .inherited = true}, - {field_tuple, 0, .inherited = true}, - [133] = - {field_patterns, 0}, - {field_value, 2}, - [135] = - {field_assign, 2, .inherited = true}, - {field_assign, 3, .inherited = true}, - [137] = - {field_assign, 2, .inherited = true}, - {field_label, 0}, - {field_pattern, 2}, - [140] = - {field_name, 2}, - {field_type, 3, .inherited = true}, - {field_value, 5}, - [143] = - {field_name, 2}, - {field_parameters, 3}, - {field_return_type, 5}, - [146] = - {field_alias, 2}, - {field_name, 0}, - [148] = - {field_parameter_types, 1}, - {field_return_type, 3}, - [150] = - {field_spread, 5}, - [151] = - {field_name, 0}, - {field_type, 2}, - [153] = - {field_guard, 1}, - {field_patterns, 0}, - {field_value, 3}, - [156] = - {field_body, 6}, - {field_name, 2}, - {field_parameters, 3}, - {field_return_type, 5}, - [160] = - {field_arguments, 5}, - {field_constructor, 0}, - {field_spread, 3}, - [163] = - {field_alias, 3}, - {field_name, 1}, - [165] = - {field_body, 7}, - {field_name, 2}, - {field_parameters, 3}, - {field_return_type, 5}, - [169] = - {field_body, 8}, - {field_name, 3}, - {field_parameters, 4}, - {field_return_type, 6}, -}; - -static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { - [0] = {0}, -}; - -static const uint16_t ts_non_terminal_alias_map[] = { - 0, -}; - -static bool ts_lex(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (eof) ADVANCE(175); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(170) - if (lookahead == '\r') SKIP(170) - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(268); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(216); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(231); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '@') ADVANCE(189); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '\\') ADVANCE(127); - if (lookahead == ']') ADVANCE(210); - if (lookahead == '_') ADVANCE(316); - if (lookahead == 'a') ADVANCE(430); - if (lookahead == 'b') ADVANCE(377); - if (lookahead == 'c') ADVANCE(325); - if (lookahead == 'e') ADVANCE(336); - if (lookahead == 'f') ADVANCE(388); - if (lookahead == 'i') ADVANCE(367); - if (lookahead == 'j') ADVANCE(323); - if (lookahead == 'l') ADVANCE(359); - if (lookahead == 'n') ADVANCE(333); - if (lookahead == 'o') ADVANCE(416); - if (lookahead == 'p') ADVANCE(327); - if (lookahead == 's') ADVANCE(378); - if (lookahead == 't') ADVANCE(404); - if (lookahead == 'u') ADVANCE(393); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '|') ADVANCE(256); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(462); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - END_STATE(); - case 1: - if (lookahead == '&') ADVANCE(228); - END_STATE(); - case 2: - if (lookahead == '-') ADVANCE(167); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(272); - END_STATE(); - case 3: - if (lookahead == '-') ADVANCE(260); - if (lookahead == '<') ADVANCE(211); - END_STATE(); - case 4: - if (lookahead == '-') ADVANCE(260); - if (lookahead == '>') ADVANCE(249); - END_STATE(); - case 5: - if (lookahead == '.') ADVANCE(253); - END_STATE(); - case 6: - if (lookahead == '.') ADVANCE(271); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(6); - END_STATE(); - case 7: - if (lookahead == '/') ADVANCE(179); - END_STATE(); - case 8: - if (lookahead == '1') ADVANCE(10); - if (lookahead == '3') ADVANCE(9); - if (lookahead == '8') ADVANCE(292); - END_STATE(); - case 9: - if (lookahead == '2') ADVANCE(296); - END_STATE(); - case 10: - if (lookahead == '6') ADVANCE(294); - END_STATE(); - case 11: - if (lookahead == '<') ADVANCE(211); - END_STATE(); - case 12: - if (lookahead == '=') ADVANCE(230); - END_STATE(); - case 13: - if (lookahead == '=') ADVANCE(229); - END_STATE(); - case 14: - if (lookahead == '>') ADVANCE(224); - END_STATE(); - case 15: - if (lookahead == '>') ADVANCE(212); - END_STATE(); - case 16: - if (lookahead == '>') ADVANCE(241); - if (lookahead == '|') ADVANCE(227); - END_STATE(); - case 17: - if (lookahead == '_') ADVANCE(111); - if (lookahead == 's') ADVANCE(290); - END_STATE(); - case 18: - if (lookahead == 'a') ADVANCE(130); - END_STATE(); - case 19: - if (lookahead == 'a') ADVANCE(100); - END_STATE(); - case 20: - if (lookahead == 'a') ADVANCE(102); - END_STATE(); - case 21: - if (lookahead == 'a') ADVANCE(76); - END_STATE(); - case 22: - if (lookahead == 'a') ADVANCE(67); - END_STATE(); - case 23: - if (lookahead == 'a') ADVANCE(109); - END_STATE(); - case 24: - if (lookahead == 'a') ADVANCE(124); - END_STATE(); - case 25: - if (lookahead == 'a') ADVANCE(116); - END_STATE(); - case 26: - if (lookahead == 'b') ADVANCE(263); - END_STATE(); - case 27: - if (lookahead == 'c') ADVANCE(86); - END_STATE(); - case 28: - if (lookahead == 'c') ADVANCE(105); - END_STATE(); - case 29: - if (lookahead == 'c') ADVANCE(91); - END_STATE(); - case 30: - if (lookahead == 'c') ADVANCE(92); - END_STATE(); - case 31: - if (lookahead == 'd') ADVANCE(304); - END_STATE(); - case 32: - if (lookahead == 'd') ADVANCE(306); - END_STATE(); - case 33: - if (lookahead == 'd') ADVANCE(45); - END_STATE(); - case 34: - if (lookahead == 'd') ADVANCE(46); - END_STATE(); - case 35: - if (lookahead == 'd') ADVANCE(47); - END_STATE(); - case 36: - if (lookahead == 'e') ADVANCE(220); - END_STATE(); - case 37: - if (lookahead == 'e') ADVANCE(202); - END_STATE(); - case 38: - if (lookahead == 'e') ADVANCE(31); - END_STATE(); - case 39: - if (lookahead == 'e') ADVANCE(310); - END_STATE(); - case 40: - if (lookahead == 'e') ADVANCE(312); - END_STATE(); - case 41: - if (lookahead == 'e') ADVANCE(265); - END_STATE(); - case 42: - if (lookahead == 'e') ADVANCE(103); - END_STATE(); - case 43: - if (lookahead == 'e') ADVANCE(32); - END_STATE(); - case 44: - if (lookahead == 'e') ADVANCE(108); - END_STATE(); - case 45: - if (lookahead == 'e') ADVANCE(96); - END_STATE(); - case 46: - if (lookahead == 'e') ADVANCE(98); - END_STATE(); - case 47: - if (lookahead == 'e') ADVANCE(99); - END_STATE(); - case 48: - if (lookahead == 'f') ADVANCE(8); - END_STATE(); - case 49: - if (lookahead == 'f') ADVANCE(181); - END_STATE(); - case 50: - if (lookahead == 'f') ADVANCE(181); - if (lookahead == 'm') ADVANCE(93); - END_STATE(); - case 51: - if (lookahead == 'g') ADVANCE(308); - if (lookahead == 'n') ADVANCE(20); - if (lookahead == 't') ADVANCE(17); - END_STATE(); - case 52: - if (lookahead == 'g') ADVANCE(185); - END_STATE(); - case 53: - if (lookahead == 'g') ADVANCE(288); - END_STATE(); - case 54: - if (lookahead == 'g') ADVANCE(78); - if (lookahead == 'z') ADVANCE(36); - END_STATE(); - case 55: - if (lookahead == 'g') ADVANCE(80); - END_STATE(); - case 56: - if (lookahead == 'i') ADVANCE(51); - if (lookahead == 'y') ADVANCE(112); - END_STATE(); - case 57: - if (lookahead == 'i') ADVANCE(54); - END_STATE(); - case 58: - if (lookahead == 'i') ADVANCE(55); - END_STATE(); - case 59: - if (lookahead == 'i') ADVANCE(131); - END_STATE(); - case 60: - if (lookahead == 'i') ADVANCE(126); - END_STATE(); - case 61: - if (lookahead == 'i') ADVANCE(97); - END_STATE(); - case 62: - if (lookahead == 'i') ADVANCE(77); - END_STATE(); - case 63: - if (lookahead == 'i') ADVANCE(114); - if (lookahead == 's') ADVANCE(58); - END_STATE(); - case 64: - if (lookahead == 'i') ADVANCE(81); - END_STATE(); - case 65: - if (lookahead == 'i') ADVANCE(82); - END_STATE(); - case 66: - if (lookahead == 'i') ADVANCE(83); - END_STATE(); - case 67: - if (lookahead == 'l') ADVANCE(225); - END_STATE(); - case 68: - if (lookahead == 'l') ADVANCE(87); - if (lookahead == 'n') ADVANCE(222); - END_STATE(); - case 69: - if (lookahead == 'l') ADVANCE(21); - END_STATE(); - case 70: - if (lookahead == 'l') ADVANCE(39); - END_STATE(); - case 71: - if (lookahead == 'm') ADVANCE(93); - END_STATE(); - case 72: - if (lookahead == 'm') ADVANCE(93); - if (lookahead == 'n') ADVANCE(113); - END_STATE(); - case 73: - if (lookahead == 'n') ADVANCE(222); - END_STATE(); - case 74: - if (lookahead == 'n') ADVANCE(63); - if (lookahead == 't') ADVANCE(48); - END_STATE(); - case 75: - if (lookahead == 'n') ADVANCE(110); - END_STATE(); - case 76: - if (lookahead == 'n') ADVANCE(52); - END_STATE(); - case 77: - if (lookahead == 'n') ADVANCE(53); - END_STATE(); - case 78: - if (lookahead == 'n') ADVANCE(38); - END_STATE(); - case 79: - if (lookahead == 'n') ADVANCE(22); - END_STATE(); - case 80: - if (lookahead == 'n') ADVANCE(43); - END_STATE(); - case 81: - if (lookahead == 'n') ADVANCE(119); - END_STATE(); - case 82: - if (lookahead == 'n') ADVANCE(120); - END_STATE(); - case 83: - if (lookahead == 'n') ADVANCE(121); - END_STATE(); - case 84: - if (lookahead == 'o') ADVANCE(75); - END_STATE(); - case 85: - if (lookahead == 'o') ADVANCE(106); - END_STATE(); - case 86: - if (lookahead == 'o') ADVANCE(33); - END_STATE(); - case 87: - if (lookahead == 'o') ADVANCE(25); - END_STATE(); - case 88: - if (lookahead == 'o') ADVANCE(64); - END_STATE(); - case 89: - if (lookahead == 'o') ADVANCE(65); - END_STATE(); - case 90: - if (lookahead == 'o') ADVANCE(66); - END_STATE(); - case 91: - if (lookahead == 'o') ADVANCE(34); - END_STATE(); - case 92: - if (lookahead == 'o') ADVANCE(35); - END_STATE(); - case 93: - if (lookahead == 'p') ADVANCE(85); - END_STATE(); - case 94: - if (lookahead == 'p') ADVANCE(19); - END_STATE(); - case 95: - if (lookahead == 'p') ADVANCE(37); - END_STATE(); - case 96: - if (lookahead == 'p') ADVANCE(88); - END_STATE(); - case 97: - if (lookahead == 'p') ADVANCE(118); - END_STATE(); - case 98: - if (lookahead == 'p') ADVANCE(89); - END_STATE(); - case 99: - if (lookahead == 'p') ADVANCE(90); - END_STATE(); - case 100: - if (lookahead == 'q') ADVANCE(129); - END_STATE(); - case 101: - if (lookahead == 'r') ADVANCE(69); - if (lookahead == 'x') ADVANCE(123); - END_STATE(); - case 102: - if (lookahead == 'r') ADVANCE(133); - END_STATE(); - case 103: - if (lookahead == 'r') ADVANCE(79); - END_STATE(); - case 104: - if (lookahead == 'r') ADVANCE(62); - END_STATE(); - case 105: - if (lookahead == 'r') ADVANCE(61); - END_STATE(); - case 106: - if (lookahead == 'r') ADVANCE(117); - END_STATE(); - case 107: - if (lookahead == 's') ADVANCE(198); - END_STATE(); - case 108: - if (lookahead == 's') ADVANCE(282); - END_STATE(); - case 109: - if (lookahead == 's') ADVANCE(28); - END_STATE(); - case 110: - if (lookahead == 's') ADVANCE(115); - END_STATE(); - case 111: - if (lookahead == 's') ADVANCE(125); - END_STATE(); - case 112: - if (lookahead == 't') ADVANCE(44); - END_STATE(); - case 113: - if (lookahead == 't') ADVANCE(284); - END_STATE(); - case 114: - if (lookahead == 't') ADVANCE(314); - END_STATE(); - case 115: - if (lookahead == 't') ADVANCE(204); - END_STATE(); - case 116: - if (lookahead == 't') ADVANCE(286); - END_STATE(); - case 117: - if (lookahead == 't') ADVANCE(194); - END_STATE(); - case 118: - if (lookahead == 't') ADVANCE(187); - END_STATE(); - case 119: - if (lookahead == 't') ADVANCE(298); - END_STATE(); - case 120: - if (lookahead == 't') ADVANCE(300); - END_STATE(); - case 121: - if (lookahead == 't') ADVANCE(302); - END_STATE(); - case 122: - if (lookahead == 't') ADVANCE(70); - END_STATE(); - case 123: - if (lookahead == 't') ADVANCE(42); - END_STATE(); - case 124: - if (lookahead == 't') ADVANCE(59); - END_STATE(); - case 125: - if (lookahead == 't') ADVANCE(104); - END_STATE(); - case 126: - if (lookahead == 't') ADVANCE(122); - END_STATE(); - case 127: - if (lookahead == 'u') ADVANCE(135); - if (lookahead == '"' || - lookahead == '\\' || - lookahead == 'e' || - lookahead == 'f' || - lookahead == 'n' || - lookahead == 'r' || - lookahead == 't') ADVANCE(269); - END_STATE(); - case 128: - if (lookahead == 'u') ADVANCE(26); - END_STATE(); - case 129: - if (lookahead == 'u') ADVANCE(41); - END_STATE(); - case 130: - if (lookahead == 'v') ADVANCE(23); - END_STATE(); - case 131: - if (lookahead == 'v') ADVANCE(40); - END_STATE(); - case 132: - if (lookahead == 'x') ADVANCE(123); - END_STATE(); - case 133: - if (lookahead == 'y') ADVANCE(280); - END_STATE(); - case 134: - if (lookahead == 'y') ADVANCE(95); - END_STATE(); - case 135: - if (lookahead == '{') ADVANCE(168); - END_STATE(); - case 136: - if (lookahead == '}') ADVANCE(270); - END_STATE(); - case 137: - if (lookahead == '}') ADVANCE(270); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(136); - END_STATE(); - case 138: - if (lookahead == '}') ADVANCE(270); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(137); - END_STATE(); - case 139: - if (lookahead == '}') ADVANCE(270); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(138); - END_STATE(); - case 140: - if (lookahead == '}') ADVANCE(270); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(139); - END_STATE(); - case 141: - if (lookahead == '}') ADVANCE(270); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(140); - END_STATE(); - case 142: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(142) - if (lookahead == '\r') SKIP(142) - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); - if (lookahead == '&') ADVANCE(1); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(217); - if (lookahead == '.') ADVANCE(5); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(231); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '[') ADVANCE(209); - if (lookahead == ']') ADVANCE(210); - if (lookahead == '_') ADVANCE(318); - if (lookahead == 'c') ADVANCE(326); - if (lookahead == 'e') ADVANCE(338); - if (lookahead == 'f') ADVANCE(392); - if (lookahead == 'p') ADVANCE(328); - if (lookahead == 't') ADVANCE(405); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - END_STATE(); - case 143: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(143) - if (lookahead == '\r') SKIP(143) - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == '-') ADVANCE(217); - if (lookahead == '.') ADVANCE(196); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); - if (lookahead == '<') ADVANCE(231); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(236); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(318); - if (lookahead == 'a') ADVANCE(430); - if (lookahead == 'c') ADVANCE(326); - if (lookahead == 'e') ADVANCE(338); - if (lookahead == 'f') ADVANCE(392); - if (lookahead == 'l') ADVANCE(360); - if (lookahead == 'p') ADVANCE(328); - if (lookahead == 't') ADVANCE(405); - if (lookahead == 'u') ADVANCE(431); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - END_STATE(); - case 144: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(144) - if (lookahead == '\r') SKIP(144) - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(217); - if (lookahead == '.') ADVANCE(196); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(231); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '@') ADVANCE(189); - if (lookahead == '[') ADVANCE(209); - if (lookahead == ']') ADVANCE(210); - if (lookahead == '_') ADVANCE(318); - if (lookahead == 'a') ADVANCE(439); - if (lookahead == 'c') ADVANCE(326); - if (lookahead == 'e') ADVANCE(338); - if (lookahead == 'f') ADVANCE(392); - if (lookahead == 'l') ADVANCE(360); - if (lookahead == 'p') ADVANCE(328); - if (lookahead == 't') ADVANCE(405); - if (lookahead == 'u') ADVANCE(431); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - END_STATE(); - case 145: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(145) - if (lookahead == '\r') SKIP(145) - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); - if (lookahead == '&') ADVANCE(1); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(217); - if (lookahead == '.') ADVANCE(5); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); - if (lookahead == '<') ADVANCE(231); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(236); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(316); - if (lookahead == 'c') ADVANCE(326); - if (lookahead == 'e') ADVANCE(338); - if (lookahead == 'f') ADVANCE(392); - if (lookahead == 'p') ADVANCE(328); - if (lookahead == 't') ADVANCE(405); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - END_STATE(); - case 146: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(146) - if (lookahead == '\r') SKIP(146) - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == '-') ADVANCE(216); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); - if (lookahead == '<') ADVANCE(231); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(236); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(318); - if (lookahead == 'c') ADVANCE(326); - if (lookahead == 'e') ADVANCE(338); - if (lookahead == 'f') ADVANCE(392); - if (lookahead == 'p') ADVANCE(328); - if (lookahead == 't') ADVANCE(405); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '|') ADVANCE(16); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - END_STATE(); - case 147: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(147) - if (lookahead == '\r') SKIP(147) - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(217); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(231); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '[') ADVANCE(209); - if (lookahead == ']') ADVANCE(210); - if (lookahead == '_') ADVANCE(318); - if (lookahead == 'a') ADVANCE(439); - if (lookahead == 'c') ADVANCE(326); - if (lookahead == 'e') ADVANCE(338); - if (lookahead == 'f') ADVANCE(392); - if (lookahead == 'l') ADVANCE(360); - if (lookahead == 'p') ADVANCE(328); - if (lookahead == 't') ADVANCE(405); - if (lookahead == 'u') ADVANCE(431); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - END_STATE(); - case 148: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(149) - if (lookahead == '\r') SKIP(149) - if (lookahead == '!') ADVANCE(12); - if (lookahead == '"') ADVANCE(268); - if (lookahead == '%') ADVANCE(248); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(214); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(276); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(232); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '@') ADVANCE(189); - if (lookahead == '\\') ADVANCE(127); - if (lookahead == ']') ADVANCE(210); - if (lookahead == 'a') ADVANCE(107); - if (lookahead == 'b') ADVANCE(56); - if (lookahead == 'c') ADVANCE(84); - if (lookahead == 'e') ADVANCE(101); - if (lookahead == 'f') ADVANCE(68); - if (lookahead == 'i') ADVANCE(72); - if (lookahead == 'j') ADVANCE(18); - if (lookahead == 'l') ADVANCE(60); - if (lookahead == 'n') ADVANCE(24); - if (lookahead == 'o') ADVANCE(94); - if (lookahead == 'p') ADVANCE(128); - if (lookahead == 's') ADVANCE(57); - if (lookahead == 't') ADVANCE(134); - if (lookahead == 'u') ADVANCE(74); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(277); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - END_STATE(); - case 149: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(149) - if (lookahead == '\r') SKIP(149) - if (lookahead == '!') ADVANCE(12); - if (lookahead == '%') ADVANCE(248); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(214); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(276); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(232); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '@') ADVANCE(189); - if (lookahead == ']') ADVANCE(210); - if (lookahead == 'a') ADVANCE(107); - if (lookahead == 'b') ADVANCE(56); - if (lookahead == 'c') ADVANCE(84); - if (lookahead == 'e') ADVANCE(101); - if (lookahead == 'f') ADVANCE(68); - if (lookahead == 'i') ADVANCE(72); - if (lookahead == 'j') ADVANCE(18); - if (lookahead == 'l') ADVANCE(60); - if (lookahead == 'n') ADVANCE(24); - if (lookahead == 'o') ADVANCE(94); - if (lookahead == 'p') ADVANCE(128); - if (lookahead == 's') ADVANCE(57); - if (lookahead == 't') ADVANCE(134); - if (lookahead == 'u') ADVANCE(74); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(277); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - END_STATE(); - case 150: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(150) - if (lookahead == '\r') SKIP(150) - if (lookahead == '!') ADVANCE(12); - if (lookahead == '%') ADVANCE(248); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(214); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(201); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(232); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '@') ADVANCE(189); - if (lookahead == ']') ADVANCE(210); - if (lookahead == 'a') ADVANCE(107); - if (lookahead == 'c') ADVANCE(84); - if (lookahead == 'e') ADVANCE(132); - if (lookahead == 'f') ADVANCE(73); - if (lookahead == 'i') ADVANCE(71); - if (lookahead == 'o') ADVANCE(94); - if (lookahead == 'p') ADVANCE(128); - if (lookahead == 't') ADVANCE(134); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(184); - END_STATE(); - case 151: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(151) - if (lookahead == '\r') SKIP(151) - if (lookahead == '!') ADVANCE(12); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(217); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); - if (lookahead == '<') ADVANCE(231); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '[') ADVANCE(209); - if (lookahead == ']') ADVANCE(210); - if (lookahead == '_') ADVANCE(316); - if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 152: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(152) - if (lookahead == '\r') SKIP(152) - if (lookahead == '!') ADVANCE(12); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == '-') ADVANCE(217); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); - if (lookahead == '<') ADVANCE(231); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(236); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(316); - if (lookahead == 'a') ADVANCE(433); - if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - END_STATE(); - case 153: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(153) - if (lookahead == '\r') SKIP(153) - if (lookahead == '!') ADVANCE(261); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == ')') ADVANCE(192); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(219); - if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(274); - if (lookahead == '<') ADVANCE(11); - if (lookahead == '>') ADVANCE(15); - if (lookahead == '[') ADVANCE(209); - if (lookahead == ']') ADVANCE(210); - if (lookahead == '_') ADVANCE(318); - if (lookahead == '{') ADVANCE(183); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 154: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(154) - if (lookahead == '\r') SKIP(154) - if (lookahead == '!') ADVANCE(12); - if (lookahead == '%') ADVANCE(248); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(215); - if (lookahead == '.') ADVANCE(196); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '<') ADVANCE(232); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(236); - if (lookahead == 'a') ADVANCE(107); - if (lookahead == 'i') ADVANCE(49); - if (lookahead == '|') ADVANCE(256); - END_STATE(); - case 155: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(155) - if (lookahead == '\r') SKIP(155) - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '-') ADVANCE(218); - if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(274); - if (lookahead == '<') ADVANCE(11); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(316); - if (lookahead == 'i') ADVANCE(369); - if (lookahead == '|') ADVANCE(255); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - END_STATE(); - case 156: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(156) - if (lookahead == '\r') SKIP(156) - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '-') ADVANCE(219); - if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(274); - if (lookahead == '<') ADVANCE(3); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(316); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 157: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(157) - if (lookahead == '\r') SKIP(157) - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '-') ADVANCE(219); - if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(274); - if (lookahead == '<') ADVANCE(11); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(316); - if (lookahead == 'a') ADVANCE(439); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - END_STATE(); - case 158: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(158) - if (lookahead == '\r') SKIP(158) - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(7); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(4); - if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(15); - if (lookahead == '@') ADVANCE(189); - if (lookahead == ']') ADVANCE(210); - if (lookahead == 'a') ADVANCE(107); - if (lookahead == 'c') ADVANCE(84); - if (lookahead == 'e') ADVANCE(132); - if (lookahead == 'f') ADVANCE(73); - if (lookahead == 'i') ADVANCE(71); - if (lookahead == 'o') ADVANCE(94); - if (lookahead == 'p') ADVANCE(128); - if (lookahead == 't') ADVANCE(134); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '}') ADVANCE(184); - END_STATE(); - case 159: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(159) - if (lookahead == '\r') SKIP(159) - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(14); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(7); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(4); - if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(15); - if (lookahead == '@') ADVANCE(189); - if (lookahead == ']') ADVANCE(210); - if (lookahead == 'a') ADVANCE(107); - if (lookahead == 'c') ADVANCE(84); - if (lookahead == 'e') ADVANCE(132); - if (lookahead == 'f') ADVANCE(73); - if (lookahead == 'i') ADVANCE(50); - if (lookahead == 'o') ADVANCE(94); - if (lookahead == 'p') ADVANCE(128); - if (lookahead == 't') ADVANCE(134); - if (lookahead == '|') ADVANCE(255); - if (lookahead == '}') ADVANCE(184); - END_STATE(); - case 160: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(160) - if (lookahead == '\r') SKIP(160) - if (lookahead == '#') ADVANCE(208); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '/') ADVANCE(7); - if (lookahead == '_') ADVANCE(317); - if (lookahead == 'f') ADVANCE(392); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - END_STATE(); - case 161: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(161) - if (lookahead == '\r') SKIP(161) - if (lookahead == ')') ADVANCE(192); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '/') ADVANCE(7); - if (lookahead == ':') ADVANCE(193); - if (lookahead == ']') ADVANCE(210); - if (lookahead == '_') ADVANCE(317); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 162: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(162) - if (lookahead == '\r') SKIP(162) - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '-') ADVANCE(213); - if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(276); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(277); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 163: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(163) - if (lookahead == '\r') SKIP(163) - if (lookahead == '/') ADVANCE(7); - if (lookahead == 't') ADVANCE(461); - if (lookahead == '}') ADVANCE(184); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - END_STATE(); - case 164: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(164) - if (lookahead == '\r') SKIP(164) - if (lookahead == '!') ADVANCE(12); - if (lookahead == '%') ADVANCE(248); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(215); - if (lookahead == '.') ADVANCE(196); - if (lookahead == '/') ADVANCE(201); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(232); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '@') ADVANCE(189); - if (lookahead == ']') ADVANCE(210); - if (lookahead == 'a') ADVANCE(107); - if (lookahead == 'c') ADVANCE(84); - if (lookahead == 'e') ADVANCE(132); - if (lookahead == 'f') ADVANCE(73); - if (lookahead == 'i') ADVANCE(50); - if (lookahead == 'o') ADVANCE(94); - if (lookahead == 'p') ADVANCE(128); - if (lookahead == 't') ADVANCE(134); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(184); - END_STATE(); - case 165: - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(279); - END_STATE(); - case 166: - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(278); - END_STATE(); - case 167: - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(272); - END_STATE(); - case 168: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); - END_STATE(); - case 169: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(273); - END_STATE(); - case 170: - if (eof) ADVANCE(175); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(170) - if (lookahead == '\r') SKIP(170) - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(216); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(231); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '@') ADVANCE(189); - if (lookahead == '[') ADVANCE(209); - if (lookahead == ']') ADVANCE(210); - if (lookahead == '_') ADVANCE(316); - if (lookahead == 'a') ADVANCE(430); - if (lookahead == 'b') ADVANCE(377); - if (lookahead == 'c') ADVANCE(325); - if (lookahead == 'e') ADVANCE(336); - if (lookahead == 'f') ADVANCE(388); - if (lookahead == 'i') ADVANCE(367); - if (lookahead == 'j') ADVANCE(323); - if (lookahead == 'l') ADVANCE(359); - if (lookahead == 'n') ADVANCE(333); - if (lookahead == 'o') ADVANCE(416); - if (lookahead == 'p') ADVANCE(327); - if (lookahead == 's') ADVANCE(378); - if (lookahead == 't') ADVANCE(404); - if (lookahead == 'u') ADVANCE(393); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '|') ADVANCE(256); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(462); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - END_STATE(); - case 171: - if (eof) ADVANCE(175); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(171) - if (lookahead == '\r') SKIP(171) - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == '-') ADVANCE(217); - if (lookahead == '.') ADVANCE(196); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); - if (lookahead == '<') ADVANCE(231); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(236); - if (lookahead == '@') ADVANCE(189); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(318); - if (lookahead == 'a') ADVANCE(439); - if (lookahead == 'c') ADVANCE(325); - if (lookahead == 'e') ADVANCE(337); - if (lookahead == 'f') ADVANCE(392); - if (lookahead == 'i') ADVANCE(368); - if (lookahead == 'l') ADVANCE(360); - if (lookahead == 'o') ADVANCE(416); - if (lookahead == 'p') ADVANCE(327); - if (lookahead == 't') ADVANCE(404); - if (lookahead == 'u') ADVANCE(431); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '|') ADVANCE(16); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - END_STATE(); - case 172: - if (eof) ADVANCE(175); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(172) - if (lookahead == '\r') SKIP(172) - if (lookahead == '!') ADVANCE(261); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(219); - if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(274); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(3); - if (lookahead == '=') ADVANCE(206); - if (lookahead == '@') ADVANCE(189); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(318); - if (lookahead == 'a') ADVANCE(439); - if (lookahead == 'c') ADVANCE(325); - if (lookahead == 'e') ADVANCE(337); - if (lookahead == 'f') ADVANCE(392); - if (lookahead == 'i') ADVANCE(368); - if (lookahead == 'l') ADVANCE(360); - if (lookahead == 'o') ADVANCE(416); - if (lookahead == 'p') ADVANCE(327); - if (lookahead == 't') ADVANCE(404); - if (lookahead == 'u') ADVANCE(431); - if (lookahead == '{') ADVANCE(183); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - END_STATE(); - case 173: - if (eof) ADVANCE(175); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(173) - if (lookahead == '\r') SKIP(173) - if (lookahead == '!') ADVANCE(261); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '-') ADVANCE(218); - if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(274); - if (lookahead == '<') ADVANCE(11); - if (lookahead == '@') ADVANCE(189); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(318); - if (lookahead == 'a') ADVANCE(439); - if (lookahead == 'c') ADVANCE(325); - if (lookahead == 'e') ADVANCE(337); - if (lookahead == 'f') ADVANCE(392); - if (lookahead == 'i') ADVANCE(368); - if (lookahead == 'l') ADVANCE(360); - if (lookahead == 'o') ADVANCE(416); - if (lookahead == 'p') ADVANCE(327); - if (lookahead == 't') ADVANCE(404); - if (lookahead == 'u') ADVANCE(431); - if (lookahead == '{') ADVANCE(183); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - END_STATE(); - case 174: - if (eof) ADVANCE(175); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(174) - if (lookahead == '\r') SKIP(174) - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == '-') ADVANCE(217); - if (lookahead == '.') ADVANCE(196); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); - if (lookahead == '<') ADVANCE(231); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(236); - if (lookahead == '@') ADVANCE(189); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(318); - if (lookahead == 'a') ADVANCE(430); - if (lookahead == 'c') ADVANCE(325); - if (lookahead == 'e') ADVANCE(337); - if (lookahead == 'f') ADVANCE(392); - if (lookahead == 'i') ADVANCE(368); - if (lookahead == 'l') ADVANCE(360); - if (lookahead == 'o') ADVANCE(416); - if (lookahead == 'p') ADVANCE(327); - if (lookahead == 't') ADVANCE(404); - if (lookahead == 'u') ADVANCE(431); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '|') ADVANCE(16); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); - END_STATE(); - case 175: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 176: - ACCEPT_TOKEN(sym_module_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(176); - END_STATE(); - case 177: - ACCEPT_TOKEN(sym_statement_comment); - if (lookahead == '/') ADVANCE(176); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(178); - END_STATE(); - case 178: - ACCEPT_TOKEN(sym_statement_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(178); - END_STATE(); - case 179: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(177); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(180); - END_STATE(); - case 180: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(180); - END_STATE(); - case 181: - ACCEPT_TOKEN(anon_sym_if); - END_STATE(); - case 182: - ACCEPT_TOKEN(anon_sym_if); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 183: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 184: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 185: - ACCEPT_TOKEN(anon_sym_erlang); - END_STATE(); - case 186: - ACCEPT_TOKEN(anon_sym_erlang); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 187: - ACCEPT_TOKEN(anon_sym_javascript); - END_STATE(); - case 188: - ACCEPT_TOKEN(anon_sym_javascript); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 189: - ACCEPT_TOKEN(anon_sym_AT); - END_STATE(); - case 190: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 191: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 192: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 193: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 194: - ACCEPT_TOKEN(anon_sym_import); - END_STATE(); - case 195: - ACCEPT_TOKEN(anon_sym_import); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 196: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 197: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(253); - END_STATE(); - case 198: - ACCEPT_TOKEN(anon_sym_as); - END_STATE(); - case 199: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 's') ADVANCE(351); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 200: - ACCEPT_TOKEN(anon_sym_as); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 201: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '.') ADVANCE(247); - if (lookahead == '/') ADVANCE(179); - END_STATE(); - case 202: - ACCEPT_TOKEN(anon_sym_type); - END_STATE(); - case 203: - ACCEPT_TOKEN(anon_sym_type); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 204: - ACCEPT_TOKEN(anon_sym_const); - END_STATE(); - case 205: - ACCEPT_TOKEN(anon_sym_const); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 206: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 207: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(229); - END_STATE(); - case 208: - ACCEPT_TOKEN(anon_sym_POUND); - END_STATE(); - case 209: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 210: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 211: - ACCEPT_TOKEN(anon_sym_LT_LT); - END_STATE(); - case 212: - ACCEPT_TOKEN(anon_sym_GT_GT); - END_STATE(); - case 213: - ACCEPT_TOKEN(anon_sym_DASH); - END_STATE(); - case 214: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(244); - END_STATE(); - case 215: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(244); - if (lookahead == '>') ADVANCE(224); - END_STATE(); - case 216: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(244); - if (lookahead == '>') ADVANCE(224); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(6); - END_STATE(); - case 217: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(244); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(6); - END_STATE(); - case 218: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(224); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(6); - END_STATE(); - case 219: - ACCEPT_TOKEN(anon_sym_DASH); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(6); - END_STATE(); - case 220: - ACCEPT_TOKEN(anon_sym_size); - END_STATE(); - case 221: - ACCEPT_TOKEN(anon_sym_size); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 222: - ACCEPT_TOKEN(anon_sym_fn); - END_STATE(); - case 223: - ACCEPT_TOKEN(anon_sym_fn); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 224: - ACCEPT_TOKEN(anon_sym_DASH_GT); - END_STATE(); - case 225: - ACCEPT_TOKEN(anon_sym_external); - END_STATE(); - case 226: - ACCEPT_TOKEN(anon_sym_external); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 227: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - END_STATE(); - case 228: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - END_STATE(); - case 229: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - END_STATE(); - case 230: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - END_STATE(); - case 231: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '.') ADVANCE(234); - if (lookahead == '<') ADVANCE(211); - if (lookahead == '=') ADVANCE(233); - if (lookahead == '>') ADVANCE(249); - END_STATE(); - case 232: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '.') ADVANCE(234); - if (lookahead == '=') ADVANCE(233); - if (lookahead == '>') ADVANCE(249); - END_STATE(); - case 233: - ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '.') ADVANCE(235); - END_STATE(); - case 234: - ACCEPT_TOKEN(anon_sym_LT_DOT); - END_STATE(); - case 235: - ACCEPT_TOKEN(anon_sym_LT_EQ_DOT); - END_STATE(); - case 236: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '.') ADVANCE(239); - if (lookahead == '=') ADVANCE(238); - END_STATE(); - case 237: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '.') ADVANCE(239); - if (lookahead == '=') ADVANCE(238); - if (lookahead == '>') ADVANCE(212); - END_STATE(); - case 238: - ACCEPT_TOKEN(anon_sym_GT_EQ); - if (lookahead == '.') ADVANCE(240); - END_STATE(); - case 239: - ACCEPT_TOKEN(anon_sym_GT_DOT); - END_STATE(); - case 240: - ACCEPT_TOKEN(anon_sym_GT_EQ_DOT); - END_STATE(); - case 241: - ACCEPT_TOKEN(anon_sym_PIPE_GT); - END_STATE(); - case 242: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(243); - END_STATE(); - case 243: - ACCEPT_TOKEN(anon_sym_PLUS_DOT); - END_STATE(); - case 244: - ACCEPT_TOKEN(anon_sym_DASH_DOT); - END_STATE(); - case 245: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '.') ADVANCE(246); - END_STATE(); - case 246: - ACCEPT_TOKEN(anon_sym_STAR_DOT); - END_STATE(); - case 247: - ACCEPT_TOKEN(anon_sym_SLASH_DOT); - END_STATE(); - case 248: - ACCEPT_TOKEN(anon_sym_PERCENT); - END_STATE(); - case 249: - ACCEPT_TOKEN(anon_sym_LT_GT); - END_STATE(); - case 250: - ACCEPT_TOKEN(anon_sym_todo); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 251: - ACCEPT_TOKEN(anon_sym_panic); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 252: - ACCEPT_TOKEN(anon_sym_echo); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 253: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - END_STATE(); - case 254: - ACCEPT_TOKEN(anon_sym_case); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 255: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 256: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '>') ADVANCE(241); - if (lookahead == '|') ADVANCE(227); - END_STATE(); - case 257: - ACCEPT_TOKEN(anon_sym_let); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 258: - ACCEPT_TOKEN(anon_sym_assert); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 259: - ACCEPT_TOKEN(anon_sym_use); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 260: - ACCEPT_TOKEN(anon_sym_LT_DASH); - END_STATE(); - case 261: - ACCEPT_TOKEN(anon_sym_BANG); - END_STATE(); - case 262: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(230); - END_STATE(); - case 263: - ACCEPT_TOKEN(sym_visibility_modifier); - END_STATE(); - case 264: - ACCEPT_TOKEN(sym_visibility_modifier); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 265: - ACCEPT_TOKEN(sym_opacity_modifier); - END_STATE(); - case 266: - ACCEPT_TOKEN(sym_opacity_modifier); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 267: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 268: - ACCEPT_TOKEN(anon_sym_DQUOTE2); - END_STATE(); - case 269: - ACCEPT_TOKEN(aux_sym_escape_sequence_token1); - END_STATE(); - case 270: - ACCEPT_TOKEN(aux_sym_escape_sequence_token2); - END_STATE(); - case 271: - ACCEPT_TOKEN(sym_float); - if (lookahead == 'e') ADVANCE(2); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(271); - END_STATE(); - case 272: - ACCEPT_TOKEN(sym_float); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(272); - END_STATE(); - case 273: - ACCEPT_TOKEN(sym__hex); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(273); - END_STATE(); - case 274: - ACCEPT_TOKEN(sym__decimal); - if (lookahead == '.') ADVANCE(271); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(165); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(166); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(169); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(275); - END_STATE(); - case 275: - ACCEPT_TOKEN(sym__decimal); - if (lookahead == '.') ADVANCE(271); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(275); - END_STATE(); - case 276: - ACCEPT_TOKEN(sym__decimal); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(165); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(166); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(169); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(277); - END_STATE(); - case 277: - ACCEPT_TOKEN(sym__decimal); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(277); - END_STATE(); - case 278: - ACCEPT_TOKEN(sym__octal); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(278); - END_STATE(); - case 279: - ACCEPT_TOKEN(sym__binary); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(279); - END_STATE(); - case 280: - ACCEPT_TOKEN(anon_sym_binary); - END_STATE(); - case 281: - ACCEPT_TOKEN(anon_sym_binary); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 282: - ACCEPT_TOKEN(anon_sym_bytes); - END_STATE(); - case 283: - ACCEPT_TOKEN(anon_sym_bytes); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 284: - ACCEPT_TOKEN(anon_sym_int); - END_STATE(); - case 285: - ACCEPT_TOKEN(anon_sym_int); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 286: - ACCEPT_TOKEN(anon_sym_float); - END_STATE(); - case 287: - ACCEPT_TOKEN(anon_sym_float); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 288: - ACCEPT_TOKEN(anon_sym_bit_string); - END_STATE(); - case 289: - ACCEPT_TOKEN(anon_sym_bit_string); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 290: - ACCEPT_TOKEN(anon_sym_bits); - END_STATE(); - case 291: - ACCEPT_TOKEN(anon_sym_bits); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 292: - ACCEPT_TOKEN(anon_sym_utf8); - if (lookahead == '_') ADVANCE(27); - END_STATE(); - case 293: - ACCEPT_TOKEN(anon_sym_utf8); - if (lookahead == '_') ADVANCE(340); - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 294: - ACCEPT_TOKEN(anon_sym_utf16); - if (lookahead == '_') ADVANCE(29); - END_STATE(); - case 295: - ACCEPT_TOKEN(anon_sym_utf16); - if (lookahead == '_') ADVANCE(342); - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 296: - ACCEPT_TOKEN(anon_sym_utf32); - if (lookahead == '_') ADVANCE(30); - END_STATE(); - case 297: - ACCEPT_TOKEN(anon_sym_utf32); - if (lookahead == '_') ADVANCE(343); - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 298: - ACCEPT_TOKEN(anon_sym_utf8_codepoint); - END_STATE(); - case 299: - ACCEPT_TOKEN(anon_sym_utf8_codepoint); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 300: - ACCEPT_TOKEN(anon_sym_utf16_codepoint); - END_STATE(); - case 301: - ACCEPT_TOKEN(anon_sym_utf16_codepoint); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 302: - ACCEPT_TOKEN(anon_sym_utf32_codepoint); - END_STATE(); - case 303: - ACCEPT_TOKEN(anon_sym_utf32_codepoint); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 304: - ACCEPT_TOKEN(anon_sym_signed); - END_STATE(); - case 305: - ACCEPT_TOKEN(anon_sym_signed); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 306: - ACCEPT_TOKEN(anon_sym_unsigned); - END_STATE(); - case 307: - ACCEPT_TOKEN(anon_sym_unsigned); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 308: - ACCEPT_TOKEN(anon_sym_big); - END_STATE(); - case 309: - ACCEPT_TOKEN(anon_sym_big); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 310: - ACCEPT_TOKEN(anon_sym_little); - END_STATE(); - case 311: - ACCEPT_TOKEN(anon_sym_little); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 312: - ACCEPT_TOKEN(anon_sym_native); - END_STATE(); - case 313: - ACCEPT_TOKEN(anon_sym_native); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 314: - ACCEPT_TOKEN(anon_sym_unit); - END_STATE(); - case 315: - ACCEPT_TOKEN(anon_sym_unit); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 316: - ACCEPT_TOKEN(sym__discard_name); - if (lookahead == '.') ADVANCE(271); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(316); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(317); - END_STATE(); - case 317: - ACCEPT_TOKEN(sym__discard_name); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(317); - END_STATE(); - case 318: - ACCEPT_TOKEN(sym__name); - if (lookahead == '.') ADVANCE(271); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(318); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 319: - ACCEPT_TOKEN(sym__name); - if (lookahead == '1') ADVANCE(321); - if (lookahead == '3') ADVANCE(320); - if (lookahead == '8') ADVANCE(293); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 320: - ACCEPT_TOKEN(sym__name); - if (lookahead == '2') ADVANCE(297); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 321: - ACCEPT_TOKEN(sym__name); - if (lookahead == '6') ADVANCE(295); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 322: - ACCEPT_TOKEN(sym__name); - if (lookahead == '_') ADVANCE(438); - if (lookahead == 's') ADVANCE(291); - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 323: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(458); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 324: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(423); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 325: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(436); - if (lookahead == 'o') ADVANCE(395); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 326: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(436); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 327: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(396); - if (lookahead == 'u') ADVANCE(335); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 328: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(396); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 329: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(424); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 330: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(389); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 331: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(394); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 332: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(435); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 333: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(451); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 334: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(444); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 335: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'b') ADVANCE(264); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 336: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(376); - if (lookahead == 'r') ADVANCE(390); - if (lookahead == 'x') ADVANCE(455); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 337: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(376); - if (lookahead == 'x') ADVANCE(455); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 338: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(376); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 339: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(251); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 340: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(408); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 341: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(427); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 342: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(414); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 343: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(415); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 344: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(305); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 345: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(307); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 346: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(407); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 347: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(364); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 348: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(365); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 349: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(366); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 350: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(259); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 351: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(428); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 352: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(254); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 353: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(221); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 354: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(203); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 355: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(311); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 356: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(313); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 357: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(266); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 358: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(344); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 359: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(441); - if (lookahead == 'i') ADVANCE(456); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 360: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(441); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 361: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(345); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 362: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(426); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 363: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(432); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 364: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(418); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 365: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(421); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 366: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(422); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 367: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(182); - if (lookahead == 'm') ADVANCE(417); - if (lookahead == 'n') ADVANCE(440); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 368: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(182); - if (lookahead == 'm') ADVANCE(417); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 369: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(182); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 370: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(319); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 371: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(309); - if (lookahead == 'n') ADVANCE(329); - if (lookahead == 't') ADVANCE(322); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 372: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(186); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 373: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(289); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 374: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(399); - if (lookahead == 'z') ADVANCE(353); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(462); - END_STATE(); - case 375: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(400); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 376: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'h') ADVANCE(406); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 377: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(371); - if (lookahead == 'y') ADVANCE(453); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 378: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(374); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 379: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(339); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 380: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(375); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 381: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(459); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 382: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(420); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 383: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(397); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 384: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(442); - if (lookahead == 's') ADVANCE(380); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 385: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(401); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 386: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(402); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 387: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(403); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 388: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(410); - if (lookahead == 'n') ADVANCE(223); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 389: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(226); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 390: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(331); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 391: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(355); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 392: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(223); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 393: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(384); - if (lookahead == 's') ADVANCE(350); - if (lookahead == 't') ADVANCE(370); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 394: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(372); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 395: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(437); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 396: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(379); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 397: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(373); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 398: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(330); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 399: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(358); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 400: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(361); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 401: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(448); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 402: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(449); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 403: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(450); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 404: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(346); - if (lookahead == 'y') ADVANCE(419); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 405: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(346); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 406: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(252); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 407: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(250); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 408: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(347); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 409: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(429); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 410: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(334); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 411: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(385); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 412: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(386); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 413: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(387); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 414: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(348); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 415: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(349); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 416: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(324); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 417: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(409); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 418: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(411); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 419: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(354); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 420: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(447); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 421: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(412); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 422: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(413); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 423: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'q') ADVANCE(457); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 424: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(460); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 425: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(383); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 426: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(398); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 427: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(382); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 428: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(445); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 429: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(446); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 430: - ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(199); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 431: - ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(350); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 432: - ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(283); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 433: - ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(200); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 434: - ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(351); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 435: - ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(341); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 436: - ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(352); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 437: - ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(443); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 438: - ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(454); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 439: - ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(434); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 440: - ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(285); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 441: - ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(257); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 442: - ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(315); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 443: - ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(205); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 444: - ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(287); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 445: - ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(258); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 446: - ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(195); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 447: - ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(188); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 448: - ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 449: - ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(301); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 450: - ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(303); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 451: - ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(381); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 452: - ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(391); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 453: - ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(363); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 454: - ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(425); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 455: - ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(362); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 456: - ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(452); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 457: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'u') ADVANCE(357); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 458: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'v') ADVANCE(332); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 459: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'v') ADVANCE(356); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 460: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'y') ADVANCE(281); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 461: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'y') ADVANCE(419); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 462: - ACCEPT_TOKEN(sym__name); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); - END_STATE(); - case 463: - ACCEPT_TOKEN(sym__upname); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); - END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 171}, - [2] = {.lex_state = 174}, - [3] = {.lex_state = 171}, - [4] = {.lex_state = 171}, - [5] = {.lex_state = 142}, - [6] = {.lex_state = 171}, - [7] = {.lex_state = 143}, - [8] = {.lex_state = 144}, - [9] = {.lex_state = 145}, - [10] = {.lex_state = 146}, - [11] = {.lex_state = 142}, - [12] = {.lex_state = 171}, - [13] = {.lex_state = 171}, - [14] = {.lex_state = 174}, - [15] = {.lex_state = 174}, - [16] = {.lex_state = 174}, - [17] = {.lex_state = 174}, - [18] = {.lex_state = 174}, - [19] = {.lex_state = 174}, - [20] = {.lex_state = 174}, - [21] = {.lex_state = 174}, - [22] = {.lex_state = 174}, - [23] = {.lex_state = 144}, - [24] = {.lex_state = 174}, - [25] = {.lex_state = 144}, - [26] = {.lex_state = 174}, - [27] = {.lex_state = 174}, - [28] = {.lex_state = 144}, - [29] = {.lex_state = 174}, - [30] = {.lex_state = 144}, - [31] = {.lex_state = 144}, - [32] = {.lex_state = 174}, - [33] = {.lex_state = 144}, - [34] = {.lex_state = 144}, - [35] = {.lex_state = 144}, - [36] = {.lex_state = 144}, - [37] = {.lex_state = 174}, - [38] = {.lex_state = 144}, - [39] = {.lex_state = 171}, - [40] = {.lex_state = 144}, - [41] = {.lex_state = 174}, - [42] = {.lex_state = 174}, - [43] = {.lex_state = 174}, - [44] = {.lex_state = 144}, - [45] = {.lex_state = 144}, - [46] = {.lex_state = 144}, - [47] = {.lex_state = 174}, - [48] = {.lex_state = 174}, - [49] = {.lex_state = 144}, - [50] = {.lex_state = 174}, - [51] = {.lex_state = 171}, - [52] = {.lex_state = 171}, - [53] = {.lex_state = 171}, - [54] = {.lex_state = 171}, - [55] = {.lex_state = 174}, - [56] = {.lex_state = 174}, - [57] = {.lex_state = 171}, - [58] = {.lex_state = 174}, - [59] = {.lex_state = 174}, - [60] = {.lex_state = 174}, - [61] = {.lex_state = 171}, - [62] = {.lex_state = 174}, - [63] = {.lex_state = 174}, - [64] = {.lex_state = 174}, - [65] = {.lex_state = 174}, - [66] = {.lex_state = 174}, - [67] = {.lex_state = 174}, - [68] = {.lex_state = 171}, - [69] = {.lex_state = 174}, - [70] = {.lex_state = 171}, - [71] = {.lex_state = 171}, - [72] = {.lex_state = 171}, - [73] = {.lex_state = 171}, - [74] = {.lex_state = 171}, - [75] = {.lex_state = 171}, - [76] = {.lex_state = 174}, - [77] = {.lex_state = 171}, - [78] = {.lex_state = 174}, - [79] = {.lex_state = 171}, - [80] = {.lex_state = 171}, - [81] = {.lex_state = 171}, - [82] = {.lex_state = 171}, - [83] = {.lex_state = 171}, - [84] = {.lex_state = 174}, - [85] = {.lex_state = 174}, - [86] = {.lex_state = 174}, - [87] = {.lex_state = 174}, - [88] = {.lex_state = 171}, - [89] = {.lex_state = 174}, - [90] = {.lex_state = 174}, - [91] = {.lex_state = 171}, - [92] = {.lex_state = 171}, - [93] = {.lex_state = 171}, - [94] = {.lex_state = 174}, - [95] = {.lex_state = 174}, - [96] = {.lex_state = 171}, - [97] = {.lex_state = 174}, - [98] = {.lex_state = 171}, - [99] = {.lex_state = 174}, - [100] = {.lex_state = 174}, - [101] = {.lex_state = 174}, - [102] = {.lex_state = 174}, - [103] = {.lex_state = 174}, - [104] = {.lex_state = 174}, - [105] = {.lex_state = 174}, - [106] = {.lex_state = 174}, - [107] = {.lex_state = 174}, - [108] = {.lex_state = 171}, - [109] = {.lex_state = 174}, - [110] = {.lex_state = 174}, - [111] = {.lex_state = 174}, - [112] = {.lex_state = 147}, - [113] = {.lex_state = 174}, - [114] = {.lex_state = 171}, - [115] = {.lex_state = 174}, - [116] = {.lex_state = 174}, - [117] = {.lex_state = 174}, - [118] = {.lex_state = 174}, - [119] = {.lex_state = 171}, - [120] = {.lex_state = 174}, - [121] = {.lex_state = 171}, - [122] = {.lex_state = 171}, - [123] = {.lex_state = 174}, - [124] = {.lex_state = 174}, - [125] = {.lex_state = 174}, - [126] = {.lex_state = 174}, - [127] = {.lex_state = 174}, - [128] = {.lex_state = 171}, - [129] = {.lex_state = 171}, - [130] = {.lex_state = 171}, - [131] = {.lex_state = 171}, - [132] = {.lex_state = 171}, - [133] = {.lex_state = 171}, - [134] = {.lex_state = 171}, - [135] = {.lex_state = 171}, - [136] = {.lex_state = 171}, - [137] = {.lex_state = 171}, - [138] = {.lex_state = 171}, - [139] = {.lex_state = 171}, - [140] = {.lex_state = 171}, - [141] = {.lex_state = 171}, - [142] = {.lex_state = 171}, - [143] = {.lex_state = 171}, - [144] = {.lex_state = 171}, - [145] = {.lex_state = 171}, - [146] = {.lex_state = 171}, - [147] = {.lex_state = 171}, - [148] = {.lex_state = 171}, - [149] = {.lex_state = 171}, - [150] = {.lex_state = 171}, - [151] = {.lex_state = 144}, - [152] = {.lex_state = 171}, - [153] = {.lex_state = 171}, - [154] = {.lex_state = 171}, - [155] = {.lex_state = 171}, - [156] = {.lex_state = 171}, - [157] = {.lex_state = 171}, - [158] = {.lex_state = 171}, - [159] = {.lex_state = 171}, - [160] = {.lex_state = 171}, - [161] = {.lex_state = 171}, - [162] = {.lex_state = 171}, - [163] = {.lex_state = 171}, - [164] = {.lex_state = 171}, - [165] = {.lex_state = 145}, - [166] = {.lex_state = 145}, - [167] = {.lex_state = 145}, - [168] = {.lex_state = 145}, - [169] = {.lex_state = 145}, - [170] = {.lex_state = 144}, - [171] = {.lex_state = 144}, - [172] = {.lex_state = 144}, - [173] = {.lex_state = 145}, - [174] = {.lex_state = 145}, - [175] = {.lex_state = 145}, - [176] = {.lex_state = 145}, - [177] = {.lex_state = 145}, - [178] = {.lex_state = 145}, - [179] = {.lex_state = 145}, - [180] = {.lex_state = 145}, - [181] = {.lex_state = 145}, - [182] = {.lex_state = 145}, - [183] = {.lex_state = 145}, - [184] = {.lex_state = 145}, - [185] = {.lex_state = 145}, - [186] = {.lex_state = 145}, - [187] = {.lex_state = 144}, - [188] = {.lex_state = 145}, - [189] = {.lex_state = 145}, - [190] = {.lex_state = 145}, - [191] = {.lex_state = 145}, - [192] = {.lex_state = 145}, - [193] = {.lex_state = 145}, - [194] = {.lex_state = 145}, - [195] = {.lex_state = 145}, - [196] = {.lex_state = 145}, - [197] = {.lex_state = 144}, - [198] = {.lex_state = 145}, - [199] = {.lex_state = 145}, - [200] = {.lex_state = 144}, - [201] = {.lex_state = 144}, - [202] = {.lex_state = 144}, - [203] = {.lex_state = 144}, - [204] = {.lex_state = 144}, - [205] = {.lex_state = 144}, - [206] = {.lex_state = 144}, - [207] = {.lex_state = 144}, - [208] = {.lex_state = 144}, - [209] = {.lex_state = 144}, - [210] = {.lex_state = 144}, - [211] = {.lex_state = 144}, - [212] = {.lex_state = 144}, - [213] = {.lex_state = 144}, - [214] = {.lex_state = 144}, - [215] = {.lex_state = 144}, - [216] = {.lex_state = 144}, - [217] = {.lex_state = 144}, - [218] = {.lex_state = 144}, - [219] = {.lex_state = 144}, - [220] = {.lex_state = 144}, - [221] = {.lex_state = 144}, - [222] = {.lex_state = 143}, - [223] = {.lex_state = 144}, - [224] = {.lex_state = 144}, - [225] = {.lex_state = 144}, - [226] = {.lex_state = 144}, - [227] = {.lex_state = 143}, - [228] = {.lex_state = 142}, - [229] = {.lex_state = 144}, - [230] = {.lex_state = 142}, - [231] = {.lex_state = 142}, - [232] = {.lex_state = 142}, - [233] = {.lex_state = 144}, - [234] = {.lex_state = 144}, - [235] = {.lex_state = 142}, - [236] = {.lex_state = 144}, - [237] = {.lex_state = 142}, - [238] = {.lex_state = 143}, - [239] = {.lex_state = 144}, - [240] = {.lex_state = 144}, - [241] = {.lex_state = 144}, - [242] = {.lex_state = 144}, - [243] = {.lex_state = 142}, - [244] = {.lex_state = 142}, - [245] = {.lex_state = 144}, - [246] = {.lex_state = 144}, - [247] = {.lex_state = 144}, - [248] = {.lex_state = 143}, - [249] = {.lex_state = 143}, - [250] = {.lex_state = 142}, - [251] = {.lex_state = 144}, - [252] = {.lex_state = 143}, - [253] = {.lex_state = 144}, - [254] = {.lex_state = 142}, - [255] = {.lex_state = 143}, - [256] = {.lex_state = 142}, - [257] = {.lex_state = 142}, - [258] = {.lex_state = 142}, - [259] = {.lex_state = 143}, - [260] = {.lex_state = 143}, - [261] = {.lex_state = 142}, - [262] = {.lex_state = 144}, - [263] = {.lex_state = 143}, - [264] = {.lex_state = 143}, - [265] = {.lex_state = 143}, - [266] = {.lex_state = 142}, - [267] = {.lex_state = 143}, - [268] = {.lex_state = 143}, - [269] = {.lex_state = 143}, - [270] = {.lex_state = 143}, - [271] = {.lex_state = 143}, - [272] = {.lex_state = 143}, - [273] = {.lex_state = 143}, - [274] = {.lex_state = 143}, - [275] = {.lex_state = 144}, - [276] = {.lex_state = 142}, - [277] = {.lex_state = 142}, - [278] = {.lex_state = 143}, - [279] = {.lex_state = 142}, - [280] = {.lex_state = 143}, - [281] = {.lex_state = 142}, - [282] = {.lex_state = 142}, - [283] = {.lex_state = 142}, - [284] = {.lex_state = 143}, - [285] = {.lex_state = 142}, - [286] = {.lex_state = 142}, - [287] = {.lex_state = 142}, - [288] = {.lex_state = 143}, - [289] = {.lex_state = 143}, - [290] = {.lex_state = 142}, - [291] = {.lex_state = 142}, - [292] = {.lex_state = 142}, - [293] = {.lex_state = 143}, - [294] = {.lex_state = 142}, - [295] = {.lex_state = 142}, - [296] = {.lex_state = 142}, - [297] = {.lex_state = 142}, - [298] = {.lex_state = 142}, - [299] = {.lex_state = 142}, - [300] = {.lex_state = 142}, - [301] = {.lex_state = 142}, - [302] = {.lex_state = 142}, - [303] = {.lex_state = 142}, - [304] = {.lex_state = 143}, - [305] = {.lex_state = 143}, - [306] = {.lex_state = 142}, - [307] = {.lex_state = 142}, - [308] = {.lex_state = 142}, - [309] = {.lex_state = 142}, - [310] = {.lex_state = 142}, - [311] = {.lex_state = 143}, - [312] = {.lex_state = 143}, - [313] = {.lex_state = 142}, - [314] = {.lex_state = 142}, - [315] = {.lex_state = 143}, - [316] = {.lex_state = 142}, - [317] = {.lex_state = 142}, - [318] = {.lex_state = 142}, - [319] = {.lex_state = 143}, - [320] = {.lex_state = 142}, - [321] = {.lex_state = 144}, - [322] = {.lex_state = 142}, - [323] = {.lex_state = 143}, - [324] = {.lex_state = 142}, - [325] = {.lex_state = 142}, - [326] = {.lex_state = 142}, - [327] = {.lex_state = 142}, - [328] = {.lex_state = 143}, - [329] = {.lex_state = 143}, - [330] = {.lex_state = 142}, - [331] = {.lex_state = 142}, - [332] = {.lex_state = 142}, - [333] = {.lex_state = 142}, - [334] = {.lex_state = 142}, - [335] = {.lex_state = 142}, - [336] = {.lex_state = 143}, - [337] = {.lex_state = 142}, - [338] = {.lex_state = 142}, - [339] = {.lex_state = 143}, - [340] = {.lex_state = 142}, - [341] = {.lex_state = 142}, - [342] = {.lex_state = 142}, - [343] = {.lex_state = 142}, - [344] = {.lex_state = 142}, - [345] = {.lex_state = 142}, - [346] = {.lex_state = 142}, - [347] = {.lex_state = 142}, - [348] = {.lex_state = 142}, - [349] = {.lex_state = 142}, - [350] = {.lex_state = 142}, - [351] = {.lex_state = 142}, - [352] = {.lex_state = 142}, - [353] = {.lex_state = 142}, - [354] = {.lex_state = 142}, - [355] = {.lex_state = 142}, - [356] = {.lex_state = 142}, - [357] = {.lex_state = 142}, - [358] = {.lex_state = 142}, - [359] = {.lex_state = 142}, - [360] = {.lex_state = 142}, - [361] = {.lex_state = 142}, - [362] = {.lex_state = 142}, - [363] = {.lex_state = 142}, - [364] = {.lex_state = 143}, - [365] = {.lex_state = 142}, - [366] = {.lex_state = 142}, - [367] = {.lex_state = 142}, - [368] = {.lex_state = 142}, - [369] = {.lex_state = 142}, - [370] = {.lex_state = 142}, - [371] = {.lex_state = 142}, - [372] = {.lex_state = 142}, - [373] = {.lex_state = 142}, - [374] = {.lex_state = 142}, - [375] = {.lex_state = 142}, - [376] = {.lex_state = 142}, - [377] = {.lex_state = 142}, - [378] = {.lex_state = 142}, - [379] = {.lex_state = 142}, - [380] = {.lex_state = 142}, - [381] = {.lex_state = 142}, - [382] = {.lex_state = 142}, - [383] = {.lex_state = 142}, - [384] = {.lex_state = 142}, - [385] = {.lex_state = 142}, - [386] = {.lex_state = 142}, - [387] = {.lex_state = 142}, - [388] = {.lex_state = 142}, - [389] = {.lex_state = 142}, - [390] = {.lex_state = 142}, - [391] = {.lex_state = 143}, - [392] = {.lex_state = 142}, - [393] = {.lex_state = 142}, - [394] = {.lex_state = 142}, - [395] = {.lex_state = 142}, - [396] = {.lex_state = 142}, - [397] = {.lex_state = 142}, - [398] = {.lex_state = 142}, - [399] = {.lex_state = 142}, - [400] = {.lex_state = 142}, - [401] = {.lex_state = 142}, - [402] = {.lex_state = 143}, - [403] = {.lex_state = 142}, - [404] = {.lex_state = 143}, - [405] = {.lex_state = 142}, - [406] = {.lex_state = 142}, - [407] = {.lex_state = 142}, - [408] = {.lex_state = 142}, - [409] = {.lex_state = 142}, - [410] = {.lex_state = 143}, - [411] = {.lex_state = 143}, - [412] = {.lex_state = 143}, - [413] = {.lex_state = 142}, - [414] = {.lex_state = 142}, - [415] = {.lex_state = 142}, - [416] = {.lex_state = 142}, - [417] = {.lex_state = 142}, - [418] = {.lex_state = 143}, - [419] = {.lex_state = 143}, - [420] = {.lex_state = 143}, - [421] = {.lex_state = 143}, - [422] = {.lex_state = 142}, - [423] = {.lex_state = 142}, - [424] = {.lex_state = 142}, - [425] = {.lex_state = 142}, - [426] = {.lex_state = 142}, - [427] = {.lex_state = 142}, - [428] = {.lex_state = 143}, - [429] = {.lex_state = 143}, - [430] = {.lex_state = 142}, - [431] = {.lex_state = 143}, - [432] = {.lex_state = 142}, - [433] = {.lex_state = 143}, - [434] = {.lex_state = 143}, - [435] = {.lex_state = 143}, - [436] = {.lex_state = 143}, - [437] = {.lex_state = 142}, - [438] = {.lex_state = 143}, - [439] = {.lex_state = 143}, - [440] = {.lex_state = 142}, - [441] = {.lex_state = 143}, - [442] = {.lex_state = 142}, - [443] = {.lex_state = 142}, - [444] = {.lex_state = 143}, - [445] = {.lex_state = 142}, - [446] = {.lex_state = 142}, - [447] = {.lex_state = 142}, - [448] = {.lex_state = 142}, - [449] = {.lex_state = 142}, - [450] = {.lex_state = 142}, - [451] = {.lex_state = 142}, - [452] = {.lex_state = 142}, - [453] = {.lex_state = 142}, - [454] = {.lex_state = 142}, - [455] = {.lex_state = 142}, - [456] = {.lex_state = 142}, - [457] = {.lex_state = 142}, - [458] = {.lex_state = 142}, - [459] = {.lex_state = 142}, - [460] = {.lex_state = 142}, - [461] = {.lex_state = 143}, - [462] = {.lex_state = 142}, - [463] = {.lex_state = 143}, - [464] = {.lex_state = 143}, - [465] = {.lex_state = 143}, - [466] = {.lex_state = 143}, - [467] = {.lex_state = 142}, - [468] = {.lex_state = 143}, - [469] = {.lex_state = 142}, - [470] = {.lex_state = 142}, - [471] = {.lex_state = 142}, - [472] = {.lex_state = 142}, - [473] = {.lex_state = 142}, - [474] = {.lex_state = 142}, - [475] = {.lex_state = 142}, - [476] = {.lex_state = 142}, - [477] = {.lex_state = 142}, - [478] = {.lex_state = 142}, - [479] = {.lex_state = 142}, - [480] = {.lex_state = 142}, - [481] = {.lex_state = 142}, - [482] = {.lex_state = 142}, - [483] = {.lex_state = 142}, - [484] = {.lex_state = 142}, - [485] = {.lex_state = 142}, - [486] = {.lex_state = 142}, - [487] = {.lex_state = 142}, - [488] = {.lex_state = 142}, - [489] = {.lex_state = 142}, - [490] = {.lex_state = 142}, - [491] = {.lex_state = 142}, - [492] = {.lex_state = 142}, - [493] = {.lex_state = 143}, - [494] = {.lex_state = 142}, - [495] = {.lex_state = 142}, - [496] = {.lex_state = 142}, - [497] = {.lex_state = 142}, - [498] = {.lex_state = 142}, - [499] = {.lex_state = 142}, - [500] = {.lex_state = 142}, - [501] = {.lex_state = 142}, - [502] = {.lex_state = 143}, - [503] = {.lex_state = 142}, - [504] = {.lex_state = 142}, - [505] = {.lex_state = 142}, - [506] = {.lex_state = 142}, - [507] = {.lex_state = 142}, - [508] = {.lex_state = 142}, - [509] = {.lex_state = 144}, - [510] = {.lex_state = 144}, - [511] = {.lex_state = 144}, - [512] = {.lex_state = 144}, - [513] = {.lex_state = 144}, - [514] = {.lex_state = 144}, - [515] = {.lex_state = 144}, - [516] = {.lex_state = 144}, - [517] = {.lex_state = 144}, - [518] = {.lex_state = 144}, - [519] = {.lex_state = 144}, - [520] = {.lex_state = 144}, - [521] = {.lex_state = 142}, - [522] = {.lex_state = 144}, - [523] = {.lex_state = 144}, - [524] = {.lex_state = 144}, - [525] = {.lex_state = 144}, - [526] = {.lex_state = 144}, - [527] = {.lex_state = 144}, - [528] = {.lex_state = 142}, - [529] = {.lex_state = 142}, - [530] = {.lex_state = 142}, - [531] = {.lex_state = 142}, - [532] = {.lex_state = 142}, - [533] = {.lex_state = 142}, - [534] = {.lex_state = 142}, - [535] = {.lex_state = 142}, - [536] = {.lex_state = 142}, - [537] = {.lex_state = 142}, - [538] = {.lex_state = 142}, - [539] = {.lex_state = 142}, - [540] = {.lex_state = 142}, - [541] = {.lex_state = 142}, - [542] = {.lex_state = 142}, - [543] = {.lex_state = 142}, - [544] = {.lex_state = 142}, - [545] = {.lex_state = 142}, - [546] = {.lex_state = 148}, - [547] = {.lex_state = 148}, - [548] = {.lex_state = 148}, - [549] = {.lex_state = 148}, - [550] = {.lex_state = 150}, - [551] = {.lex_state = 148}, - [552] = {.lex_state = 150}, - [553] = {.lex_state = 150}, - [554] = {.lex_state = 148}, - [555] = {.lex_state = 151}, - [556] = {.lex_state = 152}, - [557] = {.lex_state = 151}, - [558] = {.lex_state = 151}, - [559] = {.lex_state = 164}, - [560] = {.lex_state = 151}, - [561] = {.lex_state = 151}, - [562] = {.lex_state = 151}, - [563] = {.lex_state = 151}, - [564] = {.lex_state = 151}, - [565] = {.lex_state = 151}, - [566] = {.lex_state = 151}, - [567] = {.lex_state = 151}, - [568] = {.lex_state = 151}, - [569] = {.lex_state = 152}, - [570] = {.lex_state = 151}, - [571] = {.lex_state = 151}, - [572] = {.lex_state = 151}, - [573] = {.lex_state = 151}, - [574] = {.lex_state = 151}, - [575] = {.lex_state = 151}, - [576] = {.lex_state = 151}, - [577] = {.lex_state = 151}, - [578] = {.lex_state = 151}, - [579] = {.lex_state = 151}, - [580] = {.lex_state = 151}, - [581] = {.lex_state = 151}, - [582] = {.lex_state = 151}, - [583] = {.lex_state = 151}, - [584] = {.lex_state = 151}, - [585] = {.lex_state = 151}, - [586] = {.lex_state = 151}, - [587] = {.lex_state = 151}, - [588] = {.lex_state = 151}, - [589] = {.lex_state = 164}, - [590] = {.lex_state = 151}, - [591] = {.lex_state = 151}, - [592] = {.lex_state = 164}, - [593] = {.lex_state = 164}, - [594] = {.lex_state = 164}, - [595] = {.lex_state = 151}, - [596] = {.lex_state = 151}, - [597] = {.lex_state = 151}, - [598] = {.lex_state = 151}, - [599] = {.lex_state = 164}, - [600] = {.lex_state = 164}, - [601] = {.lex_state = 151}, - [602] = {.lex_state = 151}, - [603] = {.lex_state = 164}, - [604] = {.lex_state = 164}, - [605] = {.lex_state = 151}, - [606] = {.lex_state = 151}, - [607] = {.lex_state = 164}, - [608] = {.lex_state = 151}, - [609] = {.lex_state = 151}, - [610] = {.lex_state = 164}, - [611] = {.lex_state = 151}, - [612] = {.lex_state = 151}, - [613] = {.lex_state = 164}, - [614] = {.lex_state = 151}, - [615] = {.lex_state = 164}, - [616] = {.lex_state = 151}, - [617] = {.lex_state = 164}, - [618] = {.lex_state = 151}, - [619] = {.lex_state = 151}, - [620] = {.lex_state = 151}, - [621] = {.lex_state = 151}, - [622] = {.lex_state = 151}, - [623] = {.lex_state = 164}, - [624] = {.lex_state = 151}, - [625] = {.lex_state = 151}, - [626] = {.lex_state = 151}, - [627] = {.lex_state = 164}, - [628] = {.lex_state = 151}, - [629] = {.lex_state = 151}, - [630] = {.lex_state = 164}, - [631] = {.lex_state = 151}, - [632] = {.lex_state = 151}, - [633] = {.lex_state = 151}, - [634] = {.lex_state = 164}, - [635] = {.lex_state = 151}, - [636] = {.lex_state = 164}, - [637] = {.lex_state = 151}, - [638] = {.lex_state = 174}, - [639] = {.lex_state = 174}, - [640] = {.lex_state = 174}, - [641] = {.lex_state = 172}, - [642] = {.lex_state = 150}, - [643] = {.lex_state = 174}, - [644] = {.lex_state = 150}, - [645] = {.lex_state = 172}, - [646] = {.lex_state = 150}, - [647] = {.lex_state = 150}, - [648] = {.lex_state = 150}, - [649] = {.lex_state = 150}, - [650] = {.lex_state = 150}, - [651] = {.lex_state = 171}, - [652] = {.lex_state = 171}, - [653] = {.lex_state = 150}, - [654] = {.lex_state = 171}, - [655] = {.lex_state = 173}, - [656] = {.lex_state = 172}, - [657] = {.lex_state = 174}, - [658] = {.lex_state = 150}, - [659] = {.lex_state = 150}, - [660] = {.lex_state = 173}, - [661] = {.lex_state = 150}, - [662] = {.lex_state = 150}, - [663] = {.lex_state = 150}, - [664] = {.lex_state = 150}, - [665] = {.lex_state = 171}, - [666] = {.lex_state = 173}, - [667] = {.lex_state = 172}, - [668] = {.lex_state = 174}, - [669] = {.lex_state = 172}, - [670] = {.lex_state = 151}, - [671] = {.lex_state = 151}, - [672] = {.lex_state = 172}, - [673] = {.lex_state = 151}, - [674] = {.lex_state = 151}, - [675] = {.lex_state = 171}, - [676] = {.lex_state = 150}, - [677] = {.lex_state = 174}, - [678] = {.lex_state = 151}, - [679] = {.lex_state = 150}, - [680] = {.lex_state = 172}, - [681] = {.lex_state = 150}, - [682] = {.lex_state = 173}, - [683] = {.lex_state = 151}, - [684] = {.lex_state = 172}, - [685] = {.lex_state = 150}, - [686] = {.lex_state = 174}, - [687] = {.lex_state = 174}, - [688] = {.lex_state = 171}, - [689] = {.lex_state = 172}, - [690] = {.lex_state = 151}, - [691] = {.lex_state = 171}, - [692] = {.lex_state = 150}, - [693] = {.lex_state = 150}, - [694] = {.lex_state = 174}, - [695] = {.lex_state = 150}, - [696] = {.lex_state = 173}, - [697] = {.lex_state = 150}, - [698] = {.lex_state = 150}, - [699] = {.lex_state = 173}, - [700] = {.lex_state = 174}, - [701] = {.lex_state = 150}, - [702] = {.lex_state = 150}, - [703] = {.lex_state = 150}, - [704] = {.lex_state = 172}, - [705] = {.lex_state = 171}, - [706] = {.lex_state = 171}, - [707] = {.lex_state = 150}, - [708] = {.lex_state = 171}, - [709] = {.lex_state = 171}, - [710] = {.lex_state = 150}, - [711] = {.lex_state = 171}, - [712] = {.lex_state = 171}, - [713] = {.lex_state = 171}, - [714] = {.lex_state = 150}, - [715] = {.lex_state = 171}, - [716] = {.lex_state = 171}, - [717] = {.lex_state = 150}, - [718] = {.lex_state = 150}, - [719] = {.lex_state = 171}, - [720] = {.lex_state = 171}, - [721] = {.lex_state = 150}, - [722] = {.lex_state = 150}, - [723] = {.lex_state = 150}, - [724] = {.lex_state = 150}, - [725] = {.lex_state = 171}, - [726] = {.lex_state = 151}, - [727] = {.lex_state = 150}, - [728] = {.lex_state = 171}, - [729] = {.lex_state = 150}, - [730] = {.lex_state = 171}, - [731] = {.lex_state = 150}, - [732] = {.lex_state = 150}, - [733] = {.lex_state = 150}, - [734] = {.lex_state = 171}, - [735] = {.lex_state = 150}, - [736] = {.lex_state = 150}, - [737] = {.lex_state = 148}, - [738] = {.lex_state = 171}, - [739] = {.lex_state = 171}, - [740] = {.lex_state = 171}, - [741] = {.lex_state = 171}, - [742] = {.lex_state = 171}, - [743] = {.lex_state = 171}, - [744] = {.lex_state = 171}, - [745] = {.lex_state = 171}, - [746] = {.lex_state = 171}, - [747] = {.lex_state = 171}, - [748] = {.lex_state = 171}, - [749] = {.lex_state = 171}, - [750] = {.lex_state = 171}, - [751] = {.lex_state = 171}, - [752] = {.lex_state = 171}, - [753] = {.lex_state = 171}, - [754] = {.lex_state = 171}, - [755] = {.lex_state = 171}, - [756] = {.lex_state = 150}, - [757] = {.lex_state = 151}, - [758] = {.lex_state = 150}, - [759] = {.lex_state = 148}, - [760] = {.lex_state = 171}, - [761] = {.lex_state = 148}, - [762] = {.lex_state = 171}, - [763] = {.lex_state = 171}, - [764] = {.lex_state = 171}, - [765] = {.lex_state = 171}, - [766] = {.lex_state = 151}, - [767] = {.lex_state = 171}, - [768] = {.lex_state = 171}, - [769] = {.lex_state = 148}, - [770] = {.lex_state = 171}, - [771] = {.lex_state = 171}, - [772] = {.lex_state = 151}, - [773] = {.lex_state = 148}, - [774] = {.lex_state = 151}, - [775] = {.lex_state = 171}, - [776] = {.lex_state = 171}, - [777] = {.lex_state = 171}, - [778] = {.lex_state = 171}, - [779] = {.lex_state = 171}, - [780] = {.lex_state = 171}, - [781] = {.lex_state = 171}, - [782] = {.lex_state = 171}, - [783] = {.lex_state = 171}, - [784] = {.lex_state = 171}, - [785] = {.lex_state = 171}, - [786] = {.lex_state = 171}, - [787] = {.lex_state = 171}, - [788] = {.lex_state = 171}, - [789] = {.lex_state = 171}, - [790] = {.lex_state = 171}, - [791] = {.lex_state = 148}, - [792] = {.lex_state = 171}, - [793] = {.lex_state = 153}, - [794] = {.lex_state = 153}, - [795] = {.lex_state = 154}, - [796] = {.lex_state = 153}, - [797] = {.lex_state = 153}, - [798] = {.lex_state = 153}, - [799] = {.lex_state = 153}, - [800] = {.lex_state = 153}, - [801] = {.lex_state = 148}, - [802] = {.lex_state = 153}, - [803] = {.lex_state = 153}, - [804] = {.lex_state = 150}, - [805] = {.lex_state = 153}, - [806] = {.lex_state = 153}, - [807] = {.lex_state = 150}, - [808] = {.lex_state = 150}, - [809] = {.lex_state = 153}, - [810] = {.lex_state = 150}, - [811] = {.lex_state = 153}, - [812] = {.lex_state = 148}, - [813] = {.lex_state = 150}, - [814] = {.lex_state = 150}, - [815] = {.lex_state = 150}, - [816] = {.lex_state = 153}, - [817] = {.lex_state = 150}, - [818] = {.lex_state = 153}, - [819] = {.lex_state = 148}, - [820] = {.lex_state = 150}, - [821] = {.lex_state = 150}, - [822] = {.lex_state = 148}, - [823] = {.lex_state = 151}, - [824] = {.lex_state = 151}, - [825] = {.lex_state = 151}, - [826] = {.lex_state = 155}, - [827] = {.lex_state = 148}, - [828] = {.lex_state = 155}, - [829] = {.lex_state = 155}, - [830] = {.lex_state = 155}, - [831] = {.lex_state = 156}, - [832] = {.lex_state = 151}, - [833] = {.lex_state = 156}, - [834] = {.lex_state = 148}, - [835] = {.lex_state = 151}, - [836] = {.lex_state = 151}, - [837] = {.lex_state = 156}, - [838] = {.lex_state = 151}, - [839] = {.lex_state = 151}, - [840] = {.lex_state = 156}, - [841] = {.lex_state = 157}, - [842] = {.lex_state = 157}, - [843] = {.lex_state = 150}, - [844] = {.lex_state = 150}, - [845] = {.lex_state = 150}, - [846] = {.lex_state = 150}, - [847] = {.lex_state = 151}, - [848] = {.lex_state = 150}, - [849] = {.lex_state = 151}, - [850] = {.lex_state = 151}, - [851] = {.lex_state = 150}, - [852] = {.lex_state = 150}, - [853] = {.lex_state = 150}, - [854] = {.lex_state = 150}, - [855] = {.lex_state = 151}, - [856] = {.lex_state = 164}, - [857] = {.lex_state = 151}, - [858] = {.lex_state = 151}, - [859] = {.lex_state = 151}, - [860] = {.lex_state = 150}, - [861] = {.lex_state = 151}, - [862] = {.lex_state = 164}, - [863] = {.lex_state = 153}, - [864] = {.lex_state = 153}, - [865] = {.lex_state = 150}, - [866] = {.lex_state = 153}, - [867] = {.lex_state = 164}, - [868] = {.lex_state = 164}, - [869] = {.lex_state = 164}, - [870] = {.lex_state = 164}, - [871] = {.lex_state = 164}, - [872] = {.lex_state = 150}, - [873] = {.lex_state = 164}, - [874] = {.lex_state = 153}, - [875] = {.lex_state = 164}, - [876] = {.lex_state = 164}, - [877] = {.lex_state = 164}, - [878] = {.lex_state = 150}, - [879] = {.lex_state = 150}, - [880] = {.lex_state = 153}, - [881] = {.lex_state = 150}, - [882] = {.lex_state = 153}, - [883] = {.lex_state = 164}, - [884] = {.lex_state = 153}, - [885] = {.lex_state = 153}, - [886] = {.lex_state = 151}, - [887] = {.lex_state = 164}, - [888] = {.lex_state = 153}, - [889] = {.lex_state = 164}, - [890] = {.lex_state = 164}, - [891] = {.lex_state = 164}, - [892] = {.lex_state = 153}, - [893] = {.lex_state = 153}, - [894] = {.lex_state = 164}, - [895] = {.lex_state = 164}, - [896] = {.lex_state = 164}, - [897] = {.lex_state = 151}, - [898] = {.lex_state = 153}, - [899] = {.lex_state = 150}, - [900] = {.lex_state = 150}, - [901] = {.lex_state = 150}, - [902] = {.lex_state = 153}, - [903] = {.lex_state = 164}, - [904] = {.lex_state = 164}, - [905] = {.lex_state = 164}, - [906] = {.lex_state = 153}, - [907] = {.lex_state = 151}, - [908] = {.lex_state = 153}, - [909] = {.lex_state = 153}, - [910] = {.lex_state = 150}, - [911] = {.lex_state = 164}, - [912] = {.lex_state = 150}, - [913] = {.lex_state = 150}, - [914] = {.lex_state = 164}, - [915] = {.lex_state = 150}, - [916] = {.lex_state = 153}, - [917] = {.lex_state = 153}, - [918] = {.lex_state = 153}, - [919] = {.lex_state = 150}, - [920] = {.lex_state = 164}, - [921] = {.lex_state = 153}, - [922] = {.lex_state = 153}, - [923] = {.lex_state = 150}, - [924] = {.lex_state = 151}, - [925] = {.lex_state = 153}, - [926] = {.lex_state = 153}, - [927] = {.lex_state = 150}, - [928] = {.lex_state = 164}, - [929] = {.lex_state = 153}, - [930] = {.lex_state = 151}, - [931] = {.lex_state = 164}, - [932] = {.lex_state = 153}, - [933] = {.lex_state = 164}, - [934] = {.lex_state = 153}, - [935] = {.lex_state = 164}, - [936] = {.lex_state = 150}, - [937] = {.lex_state = 150}, - [938] = {.lex_state = 150}, - [939] = {.lex_state = 150}, - [940] = {.lex_state = 164}, - [941] = {.lex_state = 150}, - [942] = {.lex_state = 164}, - [943] = {.lex_state = 164}, - [944] = {.lex_state = 150}, - [945] = {.lex_state = 153}, - [946] = {.lex_state = 153}, - [947] = {.lex_state = 150}, - [948] = {.lex_state = 153}, - [949] = {.lex_state = 153}, - [950] = {.lex_state = 164}, - [951] = {.lex_state = 153}, - [952] = {.lex_state = 164}, - [953] = {.lex_state = 164}, - [954] = {.lex_state = 150}, - [955] = {.lex_state = 153}, - [956] = {.lex_state = 164}, - [957] = {.lex_state = 164}, - [958] = {.lex_state = 164}, - [959] = {.lex_state = 164}, - [960] = {.lex_state = 164}, - [961] = {.lex_state = 164}, - [962] = {.lex_state = 164}, - [963] = {.lex_state = 164}, - [964] = {.lex_state = 164}, - [965] = {.lex_state = 164}, - [966] = {.lex_state = 164}, - [967] = {.lex_state = 150}, - [968] = {.lex_state = 164}, - [969] = {.lex_state = 164}, - [970] = {.lex_state = 150}, - [971] = {.lex_state = 164}, - [972] = {.lex_state = 164}, - [973] = {.lex_state = 153}, - [974] = {.lex_state = 153}, - [975] = {.lex_state = 150}, - [976] = {.lex_state = 153}, - [977] = {.lex_state = 153}, - [978] = {.lex_state = 150}, - [979] = {.lex_state = 150}, - [980] = {.lex_state = 153}, - [981] = {.lex_state = 150}, - [982] = {.lex_state = 153}, - [983] = {.lex_state = 153}, - [984] = {.lex_state = 164}, - [985] = {.lex_state = 150}, - [986] = {.lex_state = 153}, - [987] = {.lex_state = 153}, - [988] = {.lex_state = 164}, - [989] = {.lex_state = 153}, - [990] = {.lex_state = 153}, - [991] = {.lex_state = 150}, - [992] = {.lex_state = 150}, - [993] = {.lex_state = 164}, - [994] = {.lex_state = 164}, - [995] = {.lex_state = 150}, - [996] = {.lex_state = 150}, - [997] = {.lex_state = 150}, - [998] = {.lex_state = 150}, - [999] = {.lex_state = 164}, - [1000] = {.lex_state = 150}, - [1001] = {.lex_state = 150}, - [1002] = {.lex_state = 150}, - [1003] = {.lex_state = 150}, - [1004] = {.lex_state = 164}, - [1005] = {.lex_state = 153}, - [1006] = {.lex_state = 150}, - [1007] = {.lex_state = 150}, - [1008] = {.lex_state = 150}, - [1009] = {.lex_state = 150}, - [1010] = {.lex_state = 150}, - [1011] = {.lex_state = 164}, - [1012] = {.lex_state = 153}, - [1013] = {.lex_state = 153}, - [1014] = {.lex_state = 164}, - [1015] = {.lex_state = 143}, - [1016] = {.lex_state = 150}, - [1017] = {.lex_state = 150}, - [1018] = {.lex_state = 150}, - [1019] = {.lex_state = 150}, - [1020] = {.lex_state = 164}, - [1021] = {.lex_state = 164}, - [1022] = {.lex_state = 150}, - [1023] = {.lex_state = 164}, - [1024] = {.lex_state = 150}, - [1025] = {.lex_state = 153}, - [1026] = {.lex_state = 164}, - [1027] = {.lex_state = 153}, - [1028] = {.lex_state = 153}, - [1029] = {.lex_state = 153}, - [1030] = {.lex_state = 150}, - [1031] = {.lex_state = 144}, - [1032] = {.lex_state = 153}, - [1033] = {.lex_state = 153}, - [1034] = {.lex_state = 153}, - [1035] = {.lex_state = 153}, - [1036] = {.lex_state = 153}, - [1037] = {.lex_state = 153}, - [1038] = {.lex_state = 150}, - [1039] = {.lex_state = 150}, - [1040] = {.lex_state = 150}, - [1041] = {.lex_state = 150}, - [1042] = {.lex_state = 164}, - [1043] = {.lex_state = 150}, - [1044] = {.lex_state = 150}, - [1045] = {.lex_state = 150}, - [1046] = {.lex_state = 150}, - [1047] = {.lex_state = 150}, - [1048] = {.lex_state = 150}, - [1049] = {.lex_state = 150}, - [1050] = {.lex_state = 150}, - [1051] = {.lex_state = 150}, - [1052] = {.lex_state = 150}, - [1053] = {.lex_state = 150}, - [1054] = {.lex_state = 150}, - [1055] = {.lex_state = 150}, - [1056] = {.lex_state = 150}, - [1057] = {.lex_state = 150}, - [1058] = {.lex_state = 150}, - [1059] = {.lex_state = 150}, - [1060] = {.lex_state = 164}, - [1061] = {.lex_state = 164}, - [1062] = {.lex_state = 164}, - [1063] = {.lex_state = 150}, - [1064] = {.lex_state = 150}, - [1065] = {.lex_state = 150}, - [1066] = {.lex_state = 150}, - [1067] = {.lex_state = 164}, - [1068] = {.lex_state = 164}, - [1069] = {.lex_state = 164}, - [1070] = {.lex_state = 150}, - [1071] = {.lex_state = 150}, - [1072] = {.lex_state = 150}, - [1073] = {.lex_state = 150}, - [1074] = {.lex_state = 150}, - [1075] = {.lex_state = 158}, - [1076] = {.lex_state = 164}, - [1077] = {.lex_state = 159}, - [1078] = {.lex_state = 164}, - [1079] = {.lex_state = 164}, - [1080] = {.lex_state = 164}, - [1081] = {.lex_state = 148}, - [1082] = {.lex_state = 148}, - [1083] = {.lex_state = 148}, - [1084] = {.lex_state = 160}, - [1085] = {.lex_state = 160}, - [1086] = {.lex_state = 160}, - [1087] = {.lex_state = 158}, - [1088] = {.lex_state = 160}, - [1089] = {.lex_state = 160}, - [1090] = {.lex_state = 160}, - [1091] = {.lex_state = 160}, - [1092] = {.lex_state = 160}, - [1093] = {.lex_state = 158}, - [1094] = {.lex_state = 160}, - [1095] = {.lex_state = 160}, - [1096] = {.lex_state = 160}, - [1097] = {.lex_state = 158}, - [1098] = {.lex_state = 160}, - [1099] = {.lex_state = 160}, - [1100] = {.lex_state = 160}, - [1101] = {.lex_state = 160}, - [1102] = {.lex_state = 160}, - [1103] = {.lex_state = 158}, - [1104] = {.lex_state = 160}, - [1105] = {.lex_state = 160}, - [1106] = {.lex_state = 160}, - [1107] = {.lex_state = 160}, - [1108] = {.lex_state = 160}, - [1109] = {.lex_state = 160}, - [1110] = {.lex_state = 160}, - [1111] = {.lex_state = 160}, - [1112] = {.lex_state = 160}, - [1113] = {.lex_state = 159}, - [1114] = {.lex_state = 160}, - [1115] = {.lex_state = 160}, - [1116] = {.lex_state = 160}, - [1117] = {.lex_state = 160}, - [1118] = {.lex_state = 160}, - [1119] = {.lex_state = 160}, - [1120] = {.lex_state = 160}, - [1121] = {.lex_state = 160}, - [1122] = {.lex_state = 160}, - [1123] = {.lex_state = 160}, - [1124] = {.lex_state = 160}, - [1125] = {.lex_state = 160}, - [1126] = {.lex_state = 160}, - [1127] = {.lex_state = 160}, - [1128] = {.lex_state = 160}, - [1129] = {.lex_state = 160}, - [1130] = {.lex_state = 160}, - [1131] = {.lex_state = 158}, - [1132] = {.lex_state = 160}, - [1133] = {.lex_state = 158}, - [1134] = {.lex_state = 160}, - [1135] = {.lex_state = 160}, - [1136] = {.lex_state = 160}, - [1137] = {.lex_state = 160}, - [1138] = {.lex_state = 160}, - [1139] = {.lex_state = 160}, - [1140] = {.lex_state = 158}, - [1141] = {.lex_state = 160}, - [1142] = {.lex_state = 160}, - [1143] = {.lex_state = 160}, - [1144] = {.lex_state = 158}, - [1145] = {.lex_state = 160}, - [1146] = {.lex_state = 158}, - [1147] = {.lex_state = 160}, - [1148] = {.lex_state = 160}, - [1149] = {.lex_state = 160}, - [1150] = {.lex_state = 160}, - [1151] = {.lex_state = 158}, - [1152] = {.lex_state = 160}, - [1153] = {.lex_state = 158}, - [1154] = {.lex_state = 158}, - [1155] = {.lex_state = 160}, - [1156] = {.lex_state = 160}, - [1157] = {.lex_state = 158}, - [1158] = {.lex_state = 160}, - [1159] = {.lex_state = 158}, - [1160] = {.lex_state = 158}, - [1161] = {.lex_state = 160}, - [1162] = {.lex_state = 160}, - [1163] = {.lex_state = 158}, - [1164] = {.lex_state = 159}, - [1165] = {.lex_state = 160}, - [1166] = {.lex_state = 159}, - [1167] = {.lex_state = 158}, - [1168] = {.lex_state = 159}, - [1169] = {.lex_state = 159}, - [1170] = {.lex_state = 148}, - [1171] = {.lex_state = 159}, - [1172] = {.lex_state = 159}, - [1173] = {.lex_state = 160}, - [1174] = {.lex_state = 159}, - [1175] = {.lex_state = 148}, - [1176] = {.lex_state = 159}, - [1177] = {.lex_state = 160}, - [1178] = {.lex_state = 159}, - [1179] = {.lex_state = 159}, - [1180] = {.lex_state = 159}, - [1181] = {.lex_state = 159}, - [1182] = {.lex_state = 159}, - [1183] = {.lex_state = 159}, - [1184] = {.lex_state = 159}, - [1185] = {.lex_state = 160}, - [1186] = {.lex_state = 159}, - [1187] = {.lex_state = 159}, - [1188] = {.lex_state = 159}, - [1189] = {.lex_state = 159}, - [1190] = {.lex_state = 159}, - [1191] = {.lex_state = 159}, - [1192] = {.lex_state = 159}, - [1193] = {.lex_state = 159}, - [1194] = {.lex_state = 159}, - [1195] = {.lex_state = 148}, - [1196] = {.lex_state = 159}, - [1197] = {.lex_state = 159}, - [1198] = {.lex_state = 159}, - [1199] = {.lex_state = 159}, - [1200] = {.lex_state = 164}, - [1201] = {.lex_state = 148}, - [1202] = {.lex_state = 164}, - [1203] = {.lex_state = 148}, - [1204] = {.lex_state = 148}, - [1205] = {.lex_state = 161}, - [1206] = {.lex_state = 148}, - [1207] = {.lex_state = 158}, - [1208] = {.lex_state = 161}, - [1209] = {.lex_state = 158}, - [1210] = {.lex_state = 159}, - [1211] = {.lex_state = 158}, - [1212] = {.lex_state = 158}, - [1213] = {.lex_state = 164}, - [1214] = {.lex_state = 164}, - [1215] = {.lex_state = 158}, - [1216] = {.lex_state = 148}, - [1217] = {.lex_state = 161}, - [1218] = {.lex_state = 164}, - [1219] = {.lex_state = 158}, - [1220] = {.lex_state = 161}, - [1221] = {.lex_state = 161}, - [1222] = {.lex_state = 158}, - [1223] = {.lex_state = 161}, - [1224] = {.lex_state = 164}, - [1225] = {.lex_state = 148}, - [1226] = {.lex_state = 148}, - [1227] = {.lex_state = 148}, - [1228] = {.lex_state = 148}, - [1229] = {.lex_state = 161}, - [1230] = {.lex_state = 148}, - [1231] = {.lex_state = 148}, - [1232] = {.lex_state = 162}, - [1233] = {.lex_state = 158}, - [1234] = {.lex_state = 148}, - [1235] = {.lex_state = 148}, - [1236] = {.lex_state = 148}, - [1237] = {.lex_state = 162}, - [1238] = {.lex_state = 148}, - [1239] = {.lex_state = 148}, - [1240] = {.lex_state = 148}, - [1241] = {.lex_state = 158}, - [1242] = {.lex_state = 162}, - [1243] = {.lex_state = 159}, - [1244] = {.lex_state = 159}, - [1245] = {.lex_state = 148}, - [1246] = {.lex_state = 148}, - [1247] = {.lex_state = 148}, - [1248] = {.lex_state = 148}, - [1249] = {.lex_state = 148}, - [1250] = {.lex_state = 148}, - [1251] = {.lex_state = 148}, - [1252] = {.lex_state = 148}, - [1253] = {.lex_state = 148}, - [1254] = {.lex_state = 148}, - [1255] = {.lex_state = 148}, - [1256] = {.lex_state = 148}, - [1257] = {.lex_state = 148}, - [1258] = {.lex_state = 159}, - [1259] = {.lex_state = 148}, - [1260] = {.lex_state = 148}, - [1261] = {.lex_state = 148}, - [1262] = {.lex_state = 148}, - [1263] = {.lex_state = 159}, - [1264] = {.lex_state = 148}, - [1265] = {.lex_state = 158}, - [1266] = {.lex_state = 148}, - [1267] = {.lex_state = 161}, - [1268] = {.lex_state = 159}, - [1269] = {.lex_state = 159}, - [1270] = {.lex_state = 161}, - [1271] = {.lex_state = 159}, - [1272] = {.lex_state = 159}, - [1273] = {.lex_state = 161}, - [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 163}, - [1276] = {.lex_state = 161}, - [1277] = {.lex_state = 0}, - [1278] = {.lex_state = 163}, - [1279] = {.lex_state = 0}, - [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 163}, - [1282] = {.lex_state = 0}, - [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 159}, - [1285] = {.lex_state = 163}, - [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 163}, - [1289] = {.lex_state = 163}, - [1290] = {.lex_state = 163}, - [1291] = {.lex_state = 148}, - [1292] = {.lex_state = 148, .external_lex_state = 1}, - [1293] = {.lex_state = 148, .external_lex_state = 1}, - [1294] = {.lex_state = 148, .external_lex_state = 1}, - [1295] = {.lex_state = 148, .external_lex_state = 1}, - [1296] = {.lex_state = 159}, - [1297] = {.lex_state = 162}, - [1298] = {.lex_state = 148, .external_lex_state = 1}, - [1299] = {.lex_state = 148, .external_lex_state = 1}, - [1300] = {.lex_state = 148, .external_lex_state = 1}, - [1301] = {.lex_state = 148}, - [1302] = {.lex_state = 162}, - [1303] = {.lex_state = 148}, - [1304] = {.lex_state = 162}, - [1305] = {.lex_state = 162}, - [1306] = {.lex_state = 162}, - [1307] = {.lex_state = 148}, - [1308] = {.lex_state = 148}, - [1309] = {.lex_state = 162}, - [1310] = {.lex_state = 162}, - [1311] = {.lex_state = 148}, - [1312] = {.lex_state = 148}, - [1313] = {.lex_state = 148, .external_lex_state = 1}, - [1314] = {.lex_state = 162}, - [1315] = {.lex_state = 162}, - [1316] = {.lex_state = 162}, - [1317] = {.lex_state = 148}, - [1318] = {.lex_state = 148, .external_lex_state = 1}, - [1319] = {.lex_state = 148, .external_lex_state = 1}, - [1320] = {.lex_state = 148, .external_lex_state = 1}, - [1321] = {.lex_state = 148, .external_lex_state = 1}, - [1322] = {.lex_state = 0}, - [1323] = {.lex_state = 148, .external_lex_state = 1}, - [1324] = {.lex_state = 148}, - [1325] = {.lex_state = 148, .external_lex_state = 1}, - [1326] = {.lex_state = 162}, - [1327] = {.lex_state = 162}, - [1328] = {.lex_state = 148}, - [1329] = {.lex_state = 148, .external_lex_state = 1}, - [1330] = {.lex_state = 148, .external_lex_state = 1}, - [1331] = {.lex_state = 148, .external_lex_state = 1}, - [1332] = {.lex_state = 0}, - [1333] = {.lex_state = 172}, - [1334] = {.lex_state = 148}, - [1335] = {.lex_state = 161}, - [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 0}, - [1338] = {.lex_state = 148}, - [1339] = {.lex_state = 0}, - [1340] = {.lex_state = 161}, - [1341] = {.lex_state = 0}, - [1342] = {.lex_state = 159}, - [1343] = {.lex_state = 148}, - [1344] = {.lex_state = 0}, - [1345] = {.lex_state = 159}, - [1346] = {.lex_state = 0}, - [1347] = {.lex_state = 148}, - [1348] = {.lex_state = 159}, - [1349] = {.lex_state = 0}, - [1350] = {.lex_state = 158}, - [1351] = {.lex_state = 148}, - [1352] = {.lex_state = 148}, - [1353] = {.lex_state = 0}, - [1354] = {.lex_state = 0}, - [1355] = {.lex_state = 161}, - [1356] = {.lex_state = 148, .external_lex_state = 1}, - [1357] = {.lex_state = 162}, - [1358] = {.lex_state = 0}, - [1359] = {.lex_state = 159}, - [1360] = {.lex_state = 159}, - [1361] = {.lex_state = 162}, - [1362] = {.lex_state = 148}, - [1363] = {.lex_state = 162}, - [1364] = {.lex_state = 148}, - [1365] = {.lex_state = 162}, - [1366] = {.lex_state = 148}, - [1367] = {.lex_state = 162}, - [1368] = {.lex_state = 161}, - [1369] = {.lex_state = 161}, - [1370] = {.lex_state = 148}, - [1371] = {.lex_state = 162}, - [1372] = {.lex_state = 162}, - [1373] = {.lex_state = 161}, - [1374] = {.lex_state = 162}, - [1375] = {.lex_state = 0}, - [1376] = {.lex_state = 148}, - [1377] = {.lex_state = 0}, - [1378] = {.lex_state = 162}, - [1379] = {.lex_state = 148}, - [1380] = {.lex_state = 0}, - [1381] = {.lex_state = 148}, - [1382] = {.lex_state = 172}, - [1383] = {.lex_state = 148}, - [1384] = {.lex_state = 148}, - [1385] = {.lex_state = 148}, - [1386] = {.lex_state = 162}, - [1387] = {.lex_state = 161}, - [1388] = {.lex_state = 0}, - [1389] = {.lex_state = 0}, - [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 162}, - [1392] = {.lex_state = 162}, - [1393] = {.lex_state = 148}, - [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 148}, - [1396] = {.lex_state = 148}, - [1397] = {.lex_state = 0}, - [1398] = {.lex_state = 148}, - [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 0}, - [1401] = {.lex_state = 172}, - [1402] = {.lex_state = 0}, - [1403] = {.lex_state = 159}, - [1404] = {.lex_state = 0}, - [1405] = {.lex_state = 0}, - [1406] = {.lex_state = 148}, - [1407] = {.lex_state = 162}, - [1408] = {.lex_state = 0}, - [1409] = {.lex_state = 0}, - [1410] = {.lex_state = 172}, - [1411] = {.lex_state = 0}, - [1412] = {.lex_state = 0}, - [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 172}, - [1415] = {.lex_state = 0}, - [1416] = {.lex_state = 0}, - [1417] = {.lex_state = 0}, - [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 0}, - [1421] = {.lex_state = 162}, - [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 0}, - [1424] = {.lex_state = 0}, - [1425] = {.lex_state = 0}, - [1426] = {.lex_state = 0}, - [1427] = {.lex_state = 0}, - [1428] = {.lex_state = 0}, - [1429] = {.lex_state = 0}, - [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 0}, - [1432] = {.lex_state = 159}, - [1433] = {.lex_state = 172}, - [1434] = {.lex_state = 0}, - [1435] = {.lex_state = 172}, - [1436] = {.lex_state = 0}, - [1437] = {.lex_state = 0}, - [1438] = {.lex_state = 0}, - [1439] = {.lex_state = 0}, - [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 0}, - [1442] = {.lex_state = 0}, - [1443] = {.lex_state = 148}, - [1444] = {.lex_state = 0}, - [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 148}, - [1447] = {.lex_state = 0}, - [1448] = {.lex_state = 148}, - [1449] = {.lex_state = 0}, - [1450] = {.lex_state = 162}, - [1451] = {.lex_state = 148}, - [1452] = {.lex_state = 0}, - [1453] = {.lex_state = 0}, - [1454] = {.lex_state = 172}, - [1455] = {.lex_state = 172}, - [1456] = {.lex_state = 0}, - [1457] = {.lex_state = 0}, - [1458] = {.lex_state = 172}, - [1459] = {.lex_state = 0}, - [1460] = {.lex_state = 0}, - [1461] = {.lex_state = 0}, - [1462] = {.lex_state = 0}, - [1463] = {.lex_state = 0}, - [1464] = {.lex_state = 172}, - [1465] = {.lex_state = 0}, - [1466] = {.lex_state = 0}, - [1467] = {.lex_state = 162}, - [1468] = {.lex_state = 0}, - [1469] = {.lex_state = 162}, - [1470] = {.lex_state = 0}, - [1471] = {.lex_state = 148}, - [1472] = {.lex_state = 172}, - [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 0}, - [1475] = {.lex_state = 0}, - [1476] = {.lex_state = 0}, - [1477] = {.lex_state = 0}, - [1478] = {.lex_state = 0}, - [1479] = {.lex_state = 0}, - [1480] = {.lex_state = 0}, - [1481] = {.lex_state = 0}, - [1482] = {.lex_state = 0}, - [1483] = {.lex_state = 0}, - [1484] = {.lex_state = 148}, - [1485] = {.lex_state = 0}, - [1486] = {.lex_state = 0}, - [1487] = {.lex_state = 0}, - [1488] = {.lex_state = 162}, - [1489] = {.lex_state = 0}, - [1490] = {.lex_state = 0}, - [1491] = {.lex_state = 0}, - [1492] = {.lex_state = 172}, - [1493] = {.lex_state = 172}, - [1494] = {.lex_state = 0}, - [1495] = {.lex_state = 0}, - [1496] = {.lex_state = 0}, - [1497] = {.lex_state = 0}, - [1498] = {.lex_state = 0}, - [1499] = {.lex_state = 0}, - [1500] = {.lex_state = 0}, - [1501] = {.lex_state = 0}, - [1502] = {.lex_state = 0}, - [1503] = {.lex_state = 0}, - [1504] = {.lex_state = 0}, - [1505] = {.lex_state = 171}, - [1506] = {.lex_state = 0}, - [1507] = {.lex_state = 0}, - [1508] = {.lex_state = 0}, - [1509] = {.lex_state = 0}, - [1510] = {.lex_state = 0}, - [1511] = {.lex_state = 164}, - [1512] = {.lex_state = 0}, - [1513] = {.lex_state = 171}, - [1514] = {.lex_state = 172}, - [1515] = {.lex_state = 0}, - [1516] = {.lex_state = 0}, - [1517] = {.lex_state = 0}, - [1518] = {.lex_state = 0}, - [1519] = {.lex_state = 0}, - [1520] = {.lex_state = 148}, - [1521] = {.lex_state = 0}, - [1522] = {.lex_state = 0}, - [1523] = {.lex_state = 0}, - [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 0}, - [1526] = {.lex_state = 162}, - [1527] = {.lex_state = 172}, - [1528] = {.lex_state = 0}, - [1529] = {.lex_state = 0}, - [1530] = {.lex_state = 0}, - [1531] = {.lex_state = 0}, - [1532] = {.lex_state = 0}, - [1533] = {.lex_state = 0}, - [1534] = {.lex_state = 172}, - [1535] = {.lex_state = 148}, - [1536] = {.lex_state = 0}, - [1537] = {.lex_state = 0}, - [1538] = {.lex_state = 0}, - [1539] = {.lex_state = 172}, - [1540] = {.lex_state = 0}, - [1541] = {.lex_state = 0}, - [1542] = {.lex_state = 0}, - [1543] = {.lex_state = 0}, - [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 0}, - [1546] = {.lex_state = 172}, - [1547] = {.lex_state = 0}, - [1548] = {.lex_state = 0}, - [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 171}, - [1551] = {.lex_state = 0}, - [1552] = {.lex_state = 172}, - [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 0}, - [1555] = {.lex_state = 0}, - [1556] = {.lex_state = 0}, - [1557] = {.lex_state = 0}, - [1558] = {.lex_state = 0}, - [1559] = {.lex_state = 171}, - [1560] = {.lex_state = 0}, - [1561] = {.lex_state = 148}, - [1562] = {.lex_state = 172}, - [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 0}, - [1565] = {.lex_state = 0}, - [1566] = {.lex_state = 0}, - [1567] = {.lex_state = 0}, - [1568] = {.lex_state = 0}, - [1569] = {.lex_state = 0}, - [1570] = {.lex_state = 0}, - [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 0}, - [1573] = {.lex_state = 0}, - [1574] = {.lex_state = 0}, - [1575] = {.lex_state = 0}, - [1576] = {.lex_state = 0}, - [1577] = {.lex_state = 0}, - [1578] = {.lex_state = 0}, - [1579] = {.lex_state = 0}, - [1580] = {.lex_state = 0}, - [1581] = {.lex_state = 0}, - [1582] = {.lex_state = 0}, - [1583] = {.lex_state = 0}, - [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 0}, - [1586] = {.lex_state = 0}, - [1587] = {.lex_state = 0}, - [1588] = {.lex_state = 148}, - [1589] = {.lex_state = 148}, - [1590] = {.lex_state = 0}, - [1591] = {.lex_state = 0}, - [1592] = {.lex_state = 0}, - [1593] = {.lex_state = 0}, - [1594] = {.lex_state = 162}, - [1595] = {.lex_state = 0}, - [1596] = {.lex_state = 148}, - [1597] = {.lex_state = 172}, - [1598] = {.lex_state = 172}, - [1599] = {.lex_state = 0}, - [1600] = {.lex_state = 0}, - [1601] = {.lex_state = 0}, - [1602] = {.lex_state = 172}, - [1603] = {.lex_state = 172}, - [1604] = {.lex_state = 0}, - [1605] = {.lex_state = 171}, - [1606] = {.lex_state = 172}, - [1607] = {.lex_state = 0}, - [1608] = {.lex_state = 0}, - [1609] = {.lex_state = 162}, - [1610] = {.lex_state = 0}, - [1611] = {.lex_state = 0}, - [1612] = {.lex_state = 162}, - [1613] = {.lex_state = 0}, - [1614] = {.lex_state = 0}, - [1615] = {.lex_state = 162}, - [1616] = {.lex_state = 162}, - [1617] = {.lex_state = 162}, - [1618] = {.lex_state = 162}, - [1619] = {.lex_state = 0}, - [1620] = {.lex_state = 172}, - [1621] = {.lex_state = 0}, - [1622] = {.lex_state = 0}, - [1623] = {.lex_state = 0}, - [1624] = {.lex_state = 0}, - [1625] = {.lex_state = 162}, - [1626] = {.lex_state = 0}, - [1627] = {.lex_state = 0}, - [1628] = {.lex_state = 0}, - [1629] = {.lex_state = 162}, - [1630] = {.lex_state = 0}, - [1631] = {.lex_state = 0}, - [1632] = {.lex_state = 0}, - [1633] = {.lex_state = 0}, - [1634] = {.lex_state = 148}, - [1635] = {.lex_state = 148}, - [1636] = {.lex_state = 0}, - [1637] = {.lex_state = 0}, - [1638] = {.lex_state = 0}, - [1639] = {.lex_state = 0}, - [1640] = {.lex_state = 0}, - [1641] = {.lex_state = 0}, - [1642] = {.lex_state = 0}, - [1643] = {.lex_state = 162}, - [1644] = {.lex_state = 0}, - [1645] = {.lex_state = 0}, - [1646] = {.lex_state = 162}, - [1647] = {.lex_state = 0}, - [1648] = {.lex_state = 0}, - [1649] = {.lex_state = 171}, - [1650] = {.lex_state = 0}, - [1651] = {.lex_state = 0}, - [1652] = {.lex_state = 0}, - [1653] = {.lex_state = 0}, - [1654] = {.lex_state = 0}, - [1655] = {.lex_state = 162}, - [1656] = {.lex_state = 0}, - [1657] = {.lex_state = 171}, - [1658] = {.lex_state = 171}, - [1659] = {.lex_state = 0}, - [1660] = {.lex_state = 0}, - [1661] = {.lex_state = 162}, - [1662] = {.lex_state = 171}, - [1663] = {.lex_state = 0}, - [1664] = {.lex_state = 171}, - [1665] = {.lex_state = 162}, - [1666] = {.lex_state = 172}, - [1667] = {.lex_state = 0}, - [1668] = {.lex_state = 0}, - [1669] = {.lex_state = 0}, - [1670] = {.lex_state = 0}, - [1671] = {.lex_state = 172}, - [1672] = {.lex_state = 0}, - [1673] = {.lex_state = 0}, - [1674] = {.lex_state = 148}, - [1675] = {.lex_state = 162}, - [1676] = {.lex_state = 0}, - [1677] = {.lex_state = 0}, - [1678] = {.lex_state = 0}, - [1679] = {.lex_state = 171}, - [1680] = {.lex_state = 0}, - [1681] = {.lex_state = 0}, - [1682] = {.lex_state = 0}, - [1683] = {.lex_state = 0}, - [1684] = {.lex_state = 0}, - [1685] = {.lex_state = 162}, - [1686] = {.lex_state = 162}, - [1687] = {.lex_state = 171}, - [1688] = {.lex_state = 0}, - [1689] = {.lex_state = 0}, - [1690] = {.lex_state = 171}, - [1691] = {.lex_state = 0}, - [1692] = {.lex_state = 162}, - [1693] = {.lex_state = 0}, - [1694] = {.lex_state = 0}, - [1695] = {.lex_state = 171}, - [1696] = {.lex_state = 0}, - [1697] = {.lex_state = 0}, - [1698] = {.lex_state = 171}, - [1699] = {.lex_state = 0}, - [1700] = {.lex_state = 0}, - [1701] = {.lex_state = 171}, - [1702] = {.lex_state = 0}, - [1703] = {.lex_state = 0}, - [1704] = {.lex_state = 171}, - [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 0}, - [1707] = {.lex_state = 0}, - [1708] = {.lex_state = 0}, - [1709] = {.lex_state = 0}, - [1710] = {.lex_state = 0}, - [1711] = {.lex_state = 0}, - [1712] = {.lex_state = 172}, - [1713] = {.lex_state = 0}, - [1714] = {.lex_state = 162}, - [1715] = {.lex_state = 0}, - [1716] = {.lex_state = 171}, - [1717] = {.lex_state = 162}, - [1718] = {.lex_state = 0}, - [1719] = {.lex_state = 162}, - [1720] = {.lex_state = 162}, - [1721] = {.lex_state = 0}, - [1722] = {.lex_state = 0}, - [1723] = {.lex_state = 0}, - [1724] = {.lex_state = 0}, - [1725] = {.lex_state = 0}, - [1726] = {.lex_state = 162}, - [1727] = {.lex_state = 0}, - [1728] = {.lex_state = 0}, - [1729] = {.lex_state = 0}, - [1730] = {.lex_state = 148}, - [1731] = {.lex_state = 0}, - [1732] = {.lex_state = 162}, - [1733] = {.lex_state = 0}, - [1734] = {.lex_state = 162}, - [1735] = {.lex_state = 162}, - [1736] = {.lex_state = 162}, - [1737] = {.lex_state = 0}, - [1738] = {.lex_state = 0}, - [1739] = {.lex_state = 0}, - [1740] = {.lex_state = 0}, - [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 0}, - [1743] = {.lex_state = 0}, - [1744] = {.lex_state = 0}, - [1745] = {.lex_state = 0}, - [1746] = {.lex_state = 162}, - [1747] = {.lex_state = 162}, - [1748] = {.lex_state = 172}, - [1749] = {.lex_state = 162}, - [1750] = {.lex_state = 171}, - [1751] = {.lex_state = 171}, - [1752] = {.lex_state = 0}, - [1753] = {.lex_state = 0}, - [1754] = {.lex_state = 0}, - [1755] = {.lex_state = 0}, - [1756] = {.lex_state = 172}, - [1757] = {.lex_state = 162}, - [1758] = {.lex_state = 0}, - [1759] = {.lex_state = 0}, - [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 0}, - [1762] = {.lex_state = 0}, - [1763] = {.lex_state = 0}, - [1764] = {.lex_state = 0}, - [1765] = {.lex_state = 0}, - [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 0}, - [1768] = {.lex_state = 0}, - [1769] = {.lex_state = 0}, - [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 0}, - [1772] = {.lex_state = 0}, - [1773] = {.lex_state = 148}, - [1774] = {.lex_state = 0}, - [1775] = {.lex_state = 0}, - [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 0}, - [1778] = {.lex_state = 0}, - [1779] = {.lex_state = 0}, - [1780] = {.lex_state = 0}, - [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 0}, - [1783] = {.lex_state = 172}, - [1784] = {.lex_state = 0}, - [1785] = {.lex_state = 172}, - [1786] = {.lex_state = 172}, - [1787] = {.lex_state = 172}, - [1788] = {.lex_state = 0}, - [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 0}, - [1791] = {.lex_state = 0}, - [1792] = {.lex_state = 0}, - [1793] = {.lex_state = 0}, - [1794] = {.lex_state = 0}, - [1795] = {.lex_state = 0}, - [1796] = {.lex_state = 0}, - [1797] = {.lex_state = 0}, - [1798] = {.lex_state = 0}, - [1799] = {.lex_state = 0}, - [1800] = {.lex_state = 0}, - [1801] = {.lex_state = 0}, - [1802] = {.lex_state = 0}, - [1803] = {.lex_state = 0}, - [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 0}, - [1806] = {.lex_state = 0}, - [1807] = {.lex_state = 0}, - [1808] = {.lex_state = 0}, - [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 0}, - [1811] = {.lex_state = 0}, - [1812] = {.lex_state = 0}, - [1813] = {.lex_state = 0}, - [1814] = {.lex_state = 172}, - [1815] = {.lex_state = 0}, - [1816] = {.lex_state = 0}, - [1817] = {.lex_state = 0}, - [1818] = {.lex_state = 0}, - [1819] = {.lex_state = 0}, - [1820] = {.lex_state = 0}, - [1821] = {.lex_state = 0}, - [1822] = {.lex_state = 0}, - [1823] = {.lex_state = 0}, - [1824] = {.lex_state = 0}, - [1825] = {.lex_state = 0}, - [1826] = {.lex_state = 0}, - [1827] = {.lex_state = 172}, - [1828] = {.lex_state = 0}, - [1829] = {.lex_state = 0}, - [1830] = {.lex_state = 0}, - [1831] = {.lex_state = 0}, - [1832] = {.lex_state = 0}, - [1833] = {.lex_state = 0}, - [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 0}, - [1836] = {.lex_state = 0}, - [1837] = {.lex_state = 0}, - [1838] = {.lex_state = 0}, - [1839] = {.lex_state = 172}, - [1840] = {.lex_state = 0}, - [1841] = {.lex_state = 0}, - [1842] = {.lex_state = 0}, - [1843] = {.lex_state = 0}, - [1844] = {.lex_state = 0}, - [1845] = {.lex_state = 0}, - [1846] = {.lex_state = 0}, - [1847] = {.lex_state = 0}, - [1848] = {.lex_state = 172}, - [1849] = {.lex_state = 0}, - [1850] = {.lex_state = 0}, - [1851] = {.lex_state = 0}, - [1852] = {.lex_state = 0}, - [1853] = {.lex_state = 148}, - [1854] = {.lex_state = 148}, - [1855] = {.lex_state = 0}, - [1856] = {.lex_state = 0}, - [1857] = {.lex_state = 0}, - [1858] = {.lex_state = 0}, - [1859] = {.lex_state = 172}, - [1860] = {.lex_state = 0}, - [1861] = {.lex_state = 172}, - [1862] = {.lex_state = 0}, - [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 0}, - [1865] = {.lex_state = 0}, - [1866] = {.lex_state = 172}, - [1867] = {.lex_state = 0}, - [1868] = {.lex_state = 148}, - [1869] = {.lex_state = 0}, - [1870] = {.lex_state = 0}, - [1871] = {.lex_state = 162}, - [1872] = {.lex_state = 0}, - [1873] = {.lex_state = 0}, - [1874] = {.lex_state = 0}, - [1875] = {.lex_state = 0}, - [1876] = {.lex_state = 0}, - [1877] = {.lex_state = 172}, - [1878] = {.lex_state = 0}, - [1879] = {.lex_state = 0}, - [1880] = {.lex_state = 0}, - [1881] = {.lex_state = 0}, - [1882] = {.lex_state = 0}, - [1883] = {.lex_state = 0}, - [1884] = {.lex_state = 0}, - [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 0}, - [1887] = {.lex_state = 172}, - [1888] = {.lex_state = 172}, - [1889] = {.lex_state = 0}, - [1890] = {.lex_state = 0}, - [1891] = {.lex_state = 0}, -}; - -enum { - ts_external_token_quoted_content = 0, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token_quoted_content] = sym_quoted_content, -}; - -static const bool ts_external_scanner_states[2][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token_quoted_content] = true, - }, -}; - -static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [ts_builtin_sym_end] = ACTIONS(1), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), - [anon_sym_if] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_erlang] = ACTIONS(1), - [anon_sym_javascript] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), - [anon_sym_import] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), - [anon_sym_as] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_type] = ACTIONS(1), - [anon_sym_const] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [anon_sym_POUND] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_LT_LT] = ACTIONS(1), - [anon_sym_GT_GT] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym_size] = ACTIONS(1), - [anon_sym_fn] = ACTIONS(1), - [anon_sym_DASH_GT] = ACTIONS(1), - [anon_sym_external] = ACTIONS(1), - [anon_sym_PIPE_PIPE] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), - [anon_sym_EQ_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_LT_EQ] = ACTIONS(1), - [anon_sym_LT_DOT] = ACTIONS(1), - [anon_sym_LT_EQ_DOT] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_GT_DOT] = ACTIONS(1), - [anon_sym_GT_EQ_DOT] = ACTIONS(1), - [anon_sym_PIPE_GT] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_PLUS_DOT] = ACTIONS(1), - [anon_sym_DASH_DOT] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_STAR_DOT] = ACTIONS(1), - [anon_sym_SLASH_DOT] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [anon_sym_LT_GT] = ACTIONS(1), - [anon_sym_todo] = ACTIONS(1), - [anon_sym_panic] = ACTIONS(1), - [anon_sym_echo] = ACTIONS(1), - [anon_sym_DOT_DOT] = ACTIONS(1), - [anon_sym_case] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_let] = ACTIONS(1), - [anon_sym_assert] = ACTIONS(1), - [anon_sym_use] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(1), - [sym_visibility_modifier] = ACTIONS(1), - [sym_opacity_modifier] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [anon_sym_DQUOTE2] = ACTIONS(1), - [aux_sym_escape_sequence_token1] = ACTIONS(1), - [aux_sym_escape_sequence_token2] = ACTIONS(1), - [sym_float] = ACTIONS(1), - [sym__hex] = ACTIONS(1), - [sym__decimal] = ACTIONS(1), - [sym__octal] = ACTIONS(1), - [sym__binary] = ACTIONS(1), - [anon_sym_binary] = ACTIONS(1), - [anon_sym_bytes] = ACTIONS(1), - [anon_sym_int] = ACTIONS(1), - [anon_sym_float] = ACTIONS(1), - [anon_sym_bit_string] = ACTIONS(1), - [anon_sym_bits] = ACTIONS(1), - [anon_sym_utf8] = ACTIONS(1), - [anon_sym_utf16] = ACTIONS(1), - [anon_sym_utf32] = ACTIONS(1), - [anon_sym_utf8_codepoint] = ACTIONS(1), - [anon_sym_utf16_codepoint] = ACTIONS(1), - [anon_sym_utf32_codepoint] = ACTIONS(1), - [anon_sym_signed] = ACTIONS(1), - [anon_sym_unsigned] = ACTIONS(1), - [anon_sym_big] = ACTIONS(1), - [anon_sym_little] = ACTIONS(1), - [anon_sym_native] = ACTIONS(1), - [anon_sym_unit] = ACTIONS(1), - [sym__discard_name] = ACTIONS(1), - [sym__name] = ACTIONS(1), - [sym__upname] = ACTIONS(1), - [sym_quoted_content] = ACTIONS(1), - }, - [1] = { - [sym_source_file] = STATE(1864), - [sym__module_statement] = STATE(4), - [sym_target_group] = STATE(4), - [sym_attribute] = STATE(4), - [sym_import] = STATE(4), - [sym_constant] = STATE(4), - [sym_external_type] = STATE(4), - [sym_external_function] = STATE(4), - [sym_function] = STATE(4), - [aux_sym__statement_seq] = STATE(13), - [sym__statement] = STATE(13), - [sym__expression] = STATE(134), - [sym_binary_expression] = STATE(134), - [sym__expression_unit] = STATE(134), - [sym_record] = STATE(93), - [sym_todo] = STATE(134), - [sym_panic] = STATE(134), - [sym_echo] = STATE(134), - [sym_tuple] = STATE(92), - [sym_list] = STATE(134), - [sym__expression_bit_string] = STATE(134), - [sym_anonymous_function] = STATE(91), - [sym_block] = STATE(81), - [sym_case] = STATE(81), - [sym_let_assert] = STATE(13), - [sym_assert] = STATE(13), - [sym_let] = STATE(13), - [sym_use] = STATE(13), - [sym_boolean_negation] = STATE(134), - [sym_integer_negation] = STATE(134), - [sym_record_update] = STATE(93), - [sym__maybe_tuple_expression] = STATE(1863), - [sym_tuple_access] = STATE(81), - [sym__maybe_record_expression] = STATE(1862), - [sym_field_access] = STATE(81), - [sym__maybe_function_expression] = STATE(1652), - [sym_function_call] = STATE(81), - [sym_type_definition] = STATE(4), - [sym_type_alias] = STATE(4), - [sym_string] = STATE(134), - [sym_integer] = STATE(134), - [sym_identifier] = STATE(74), - [sym_constructor_name] = STATE(39), - [sym_remote_constructor_name] = STATE(39), - [aux_sym_source_file_repeat1] = STATE(4), - [ts_builtin_sym_end] = ACTIONS(7), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), - [anon_sym_if] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_AT] = ACTIONS(13), - [anon_sym_import] = ACTIONS(15), - [anon_sym_type] = ACTIONS(17), - [anon_sym_const] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_LT_LT] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_fn] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_todo] = ACTIONS(33), - [anon_sym_panic] = ACTIONS(35), - [anon_sym_echo] = ACTIONS(37), - [anon_sym_case] = ACTIONS(39), - [anon_sym_let] = ACTIONS(41), - [anon_sym_assert] = ACTIONS(43), - [anon_sym_use] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [sym_visibility_modifier] = ACTIONS(49), - [sym_opacity_modifier] = ACTIONS(51), - [anon_sym_DQUOTE] = ACTIONS(53), - [sym_float] = ACTIONS(55), - [sym__hex] = ACTIONS(57), - [sym__decimal] = ACTIONS(59), - [sym__octal] = ACTIONS(57), - [sym__binary] = ACTIONS(57), - [sym__name] = ACTIONS(61), - [sym__upname] = ACTIONS(63), - }, - [2] = { - [sym__expression] = STATE(97), - [sym_binary_expression] = STATE(97), - [sym__expression_unit] = STATE(97), - [sym_record] = STATE(69), - [sym_todo] = STATE(97), - [sym_panic] = STATE(97), - [sym_echo] = STATE(97), - [sym_tuple] = STATE(76), - [sym_list] = STATE(97), - [sym__expression_bit_string] = STATE(97), - [sym_anonymous_function] = STATE(78), - [sym_block] = STATE(26), - [sym_case] = STATE(26), - [sym_boolean_negation] = STATE(97), - [sym_integer_negation] = STATE(97), - [sym_record_update] = STATE(69), - [sym__maybe_tuple_expression] = STATE(1876), - [sym_tuple_access] = STATE(26), - [sym__maybe_record_expression] = STATE(1809), - [sym_field_access] = STATE(26), - [sym__maybe_function_expression] = STATE(1608), - [sym_function_call] = STATE(26), - [sym_string] = STATE(97), - [sym_integer] = STATE(97), - [sym_identifier] = STATE(27), - [sym_constructor_name] = STATE(14), - [sym_remote_constructor_name] = STATE(14), - [ts_builtin_sym_end] = ACTIONS(65), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), - [anon_sym_if] = ACTIONS(67), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(65), - [anon_sym_import] = ACTIONS(67), - [anon_sym_as] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_type] = ACTIONS(67), - [anon_sym_const] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT_LT] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_fn] = ACTIONS(67), - [anon_sym_external] = ACTIONS(67), - [anon_sym_PIPE_PIPE] = ACTIONS(65), - [anon_sym_AMP_AMP] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LT_EQ] = ACTIONS(67), - [anon_sym_LT_DOT] = ACTIONS(65), - [anon_sym_LT_EQ_DOT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(67), - [anon_sym_GT_EQ] = ACTIONS(67), - [anon_sym_GT_DOT] = ACTIONS(65), - [anon_sym_GT_EQ_DOT] = ACTIONS(65), - [anon_sym_PIPE_GT] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_PLUS_DOT] = ACTIONS(65), - [anon_sym_DASH_DOT] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(67), - [anon_sym_STAR_DOT] = ACTIONS(65), - [anon_sym_SLASH_DOT] = ACTIONS(65), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_LT_GT] = ACTIONS(65), - [anon_sym_todo] = ACTIONS(67), - [anon_sym_panic] = ACTIONS(67), - [anon_sym_echo] = ACTIONS(67), - [anon_sym_case] = ACTIONS(67), - [anon_sym_let] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(67), - [anon_sym_use] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(67), - [sym_visibility_modifier] = ACTIONS(67), - [sym_opacity_modifier] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(65), - [sym_float] = ACTIONS(65), - [sym__hex] = ACTIONS(65), - [sym__decimal] = ACTIONS(67), - [sym__octal] = ACTIONS(65), - [sym__binary] = ACTIONS(65), - [sym__name] = ACTIONS(67), - [sym__upname] = ACTIONS(65), - }, - [3] = { - [sym__expression] = STATE(133), - [sym_binary_expression] = STATE(133), - [sym__expression_unit] = STATE(133), - [sym_record] = STATE(93), - [sym_todo] = STATE(133), - [sym_panic] = STATE(133), - [sym_echo] = STATE(133), - [sym_tuple] = STATE(92), - [sym_list] = STATE(133), - [sym__expression_bit_string] = STATE(133), - [sym_anonymous_function] = STATE(91), - [sym_block] = STATE(81), - [sym_case] = STATE(81), - [sym_boolean_negation] = STATE(133), - [sym_integer_negation] = STATE(133), - [sym_record_update] = STATE(93), - [sym__maybe_tuple_expression] = STATE(1863), - [sym_tuple_access] = STATE(81), - [sym__maybe_record_expression] = STATE(1862), - [sym_field_access] = STATE(81), - [sym__maybe_function_expression] = STATE(1652), - [sym_function_call] = STATE(81), - [sym_string] = STATE(133), - [sym_integer] = STATE(133), - [sym_identifier] = STATE(74), - [sym_constructor_name] = STATE(39), - [sym_remote_constructor_name] = STATE(39), - [ts_builtin_sym_end] = ACTIONS(65), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), - [anon_sym_if] = ACTIONS(67), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(65), - [anon_sym_import] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_type] = ACTIONS(67), - [anon_sym_const] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT_LT] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_fn] = ACTIONS(67), - [anon_sym_external] = ACTIONS(67), - [anon_sym_PIPE_PIPE] = ACTIONS(65), - [anon_sym_AMP_AMP] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LT_EQ] = ACTIONS(67), - [anon_sym_LT_DOT] = ACTIONS(65), - [anon_sym_LT_EQ_DOT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(67), - [anon_sym_GT_EQ] = ACTIONS(67), - [anon_sym_GT_DOT] = ACTIONS(65), - [anon_sym_GT_EQ_DOT] = ACTIONS(65), - [anon_sym_PIPE_GT] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_PLUS_DOT] = ACTIONS(65), - [anon_sym_DASH_DOT] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(67), - [anon_sym_STAR_DOT] = ACTIONS(65), - [anon_sym_SLASH_DOT] = ACTIONS(65), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_LT_GT] = ACTIONS(65), - [anon_sym_todo] = ACTIONS(67), - [anon_sym_panic] = ACTIONS(67), - [anon_sym_echo] = ACTIONS(67), - [anon_sym_case] = ACTIONS(67), - [anon_sym_let] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(67), - [anon_sym_use] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(67), - [sym_visibility_modifier] = ACTIONS(67), - [sym_opacity_modifier] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(65), - [sym_float] = ACTIONS(65), - [sym__hex] = ACTIONS(65), - [sym__decimal] = ACTIONS(67), - [sym__octal] = ACTIONS(65), - [sym__binary] = ACTIONS(65), - [sym__name] = ACTIONS(67), - [sym__upname] = ACTIONS(65), - }, - [4] = { - [sym__module_statement] = STATE(6), - [sym_target_group] = STATE(6), - [sym_attribute] = STATE(6), - [sym_import] = STATE(6), - [sym_constant] = STATE(6), - [sym_external_type] = STATE(6), - [sym_external_function] = STATE(6), - [sym_function] = STATE(6), - [aux_sym__statement_seq] = STATE(13), - [sym__statement] = STATE(13), - [sym__expression] = STATE(134), - [sym_binary_expression] = STATE(134), - [sym__expression_unit] = STATE(134), - [sym_record] = STATE(93), - [sym_todo] = STATE(134), - [sym_panic] = STATE(134), - [sym_echo] = STATE(134), - [sym_tuple] = STATE(92), - [sym_list] = STATE(134), - [sym__expression_bit_string] = STATE(134), - [sym_anonymous_function] = STATE(91), - [sym_block] = STATE(81), - [sym_case] = STATE(81), - [sym_let_assert] = STATE(13), - [sym_assert] = STATE(13), - [sym_let] = STATE(13), - [sym_use] = STATE(13), - [sym_boolean_negation] = STATE(134), - [sym_integer_negation] = STATE(134), - [sym_record_update] = STATE(93), - [sym__maybe_tuple_expression] = STATE(1863), - [sym_tuple_access] = STATE(81), - [sym__maybe_record_expression] = STATE(1862), - [sym_field_access] = STATE(81), - [sym__maybe_function_expression] = STATE(1652), - [sym_function_call] = STATE(81), - [sym_type_definition] = STATE(6), - [sym_type_alias] = STATE(6), - [sym_string] = STATE(134), - [sym_integer] = STATE(134), - [sym_identifier] = STATE(74), - [sym_constructor_name] = STATE(39), - [sym_remote_constructor_name] = STATE(39), - [aux_sym_source_file_repeat1] = STATE(6), - [ts_builtin_sym_end] = ACTIONS(69), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), - [anon_sym_if] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_AT] = ACTIONS(13), - [anon_sym_import] = ACTIONS(15), - [anon_sym_type] = ACTIONS(17), - [anon_sym_const] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_LT_LT] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_fn] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_todo] = ACTIONS(33), - [anon_sym_panic] = ACTIONS(35), - [anon_sym_echo] = ACTIONS(37), - [anon_sym_case] = ACTIONS(39), - [anon_sym_let] = ACTIONS(41), - [anon_sym_assert] = ACTIONS(43), - [anon_sym_use] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [sym_visibility_modifier] = ACTIONS(49), - [sym_opacity_modifier] = ACTIONS(51), - [anon_sym_DQUOTE] = ACTIONS(53), - [sym_float] = ACTIONS(55), - [sym__hex] = ACTIONS(57), - [sym__decimal] = ACTIONS(59), - [sym__octal] = ACTIONS(57), - [sym__binary] = ACTIONS(57), - [sym__name] = ACTIONS(61), - [sym__upname] = ACTIONS(63), - }, - [5] = { - [sym__expression] = STATE(810), - [sym_binary_expression] = STATE(810), - [sym__expression_unit] = STATE(810), - [sym_record] = STATE(679), - [sym_todo] = STATE(810), - [sym_panic] = STATE(810), - [sym_echo] = STATE(810), - [sym_tuple] = STATE(681), - [sym_list] = STATE(810), - [sym__expression_bit_string] = STATE(810), - [sym_anonymous_function] = STATE(685), - [sym_block] = STATE(644), - [sym_case] = STATE(644), - [sym_boolean_negation] = STATE(810), - [sym_integer_negation] = STATE(810), - [sym_record_update] = STATE(679), - [sym__maybe_tuple_expression] = STATE(1821), - [sym_tuple_access] = STATE(644), - [sym__maybe_record_expression] = STATE(1796), - [sym_field_access] = STATE(644), - [sym__maybe_function_expression] = STATE(1682), - [sym_function_call] = STATE(644), - [sym_string] = STATE(810), - [sym_integer] = STATE(810), - [sym_identifier] = STATE(649), - [sym_constructor_name] = STATE(642), - [sym_remote_constructor_name] = STATE(642), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_RBRACE] = ACTIONS(65), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_RBRACK] = ACTIONS(65), - [anon_sym_LT_LT] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_fn] = ACTIONS(79), - [anon_sym_PIPE_PIPE] = ACTIONS(65), - [anon_sym_AMP_AMP] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LT_EQ] = ACTIONS(67), - [anon_sym_LT_DOT] = ACTIONS(65), - [anon_sym_LT_EQ_DOT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(67), - [anon_sym_GT_EQ] = ACTIONS(67), - [anon_sym_GT_DOT] = ACTIONS(65), - [anon_sym_GT_EQ_DOT] = ACTIONS(65), - [anon_sym_PIPE_GT] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_PLUS_DOT] = ACTIONS(65), - [anon_sym_DASH_DOT] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(67), - [anon_sym_STAR_DOT] = ACTIONS(65), - [anon_sym_SLASH_DOT] = ACTIONS(65), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_LT_GT] = ACTIONS(65), - [anon_sym_todo] = ACTIONS(81), - [anon_sym_panic] = ACTIONS(83), - [anon_sym_echo] = ACTIONS(85), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_case] = ACTIONS(87), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_float] = ACTIONS(93), - [sym__hex] = ACTIONS(95), - [sym__decimal] = ACTIONS(97), - [sym__octal] = ACTIONS(95), - [sym__binary] = ACTIONS(95), - [sym__name] = ACTIONS(99), - [sym__upname] = ACTIONS(101), - }, - [6] = { - [sym__module_statement] = STATE(6), - [sym_target_group] = STATE(6), - [sym_attribute] = STATE(6), - [sym_import] = STATE(6), - [sym_constant] = STATE(6), - [sym_external_type] = STATE(6), - [sym_external_function] = STATE(6), - [sym_function] = STATE(6), - [aux_sym__statement_seq] = STATE(13), - [sym__statement] = STATE(13), - [sym__expression] = STATE(134), - [sym_binary_expression] = STATE(134), - [sym__expression_unit] = STATE(134), - [sym_record] = STATE(93), - [sym_todo] = STATE(134), - [sym_panic] = STATE(134), - [sym_echo] = STATE(134), - [sym_tuple] = STATE(92), - [sym_list] = STATE(134), - [sym__expression_bit_string] = STATE(134), - [sym_anonymous_function] = STATE(91), - [sym_block] = STATE(81), - [sym_case] = STATE(81), - [sym_let_assert] = STATE(13), - [sym_assert] = STATE(13), - [sym_let] = STATE(13), - [sym_use] = STATE(13), - [sym_boolean_negation] = STATE(134), - [sym_integer_negation] = STATE(134), - [sym_record_update] = STATE(93), - [sym__maybe_tuple_expression] = STATE(1863), - [sym_tuple_access] = STATE(81), - [sym__maybe_record_expression] = STATE(1862), - [sym_field_access] = STATE(81), - [sym__maybe_function_expression] = STATE(1652), - [sym_function_call] = STATE(81), - [sym_type_definition] = STATE(6), - [sym_type_alias] = STATE(6), - [sym_string] = STATE(134), - [sym_integer] = STATE(134), - [sym_identifier] = STATE(74), - [sym_constructor_name] = STATE(39), - [sym_remote_constructor_name] = STATE(39), - [aux_sym_source_file_repeat1] = STATE(6), - [ts_builtin_sym_end] = ACTIONS(103), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), - [anon_sym_if] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(108), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_import] = ACTIONS(114), - [anon_sym_type] = ACTIONS(117), - [anon_sym_const] = ACTIONS(120), - [anon_sym_POUND] = ACTIONS(123), - [anon_sym_LBRACK] = ACTIONS(126), - [anon_sym_LT_LT] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(132), - [anon_sym_fn] = ACTIONS(135), - [anon_sym_external] = ACTIONS(138), - [anon_sym_todo] = ACTIONS(141), - [anon_sym_panic] = ACTIONS(144), - [anon_sym_echo] = ACTIONS(147), - [anon_sym_case] = ACTIONS(150), - [anon_sym_let] = ACTIONS(153), - [anon_sym_assert] = ACTIONS(156), - [anon_sym_use] = ACTIONS(159), - [anon_sym_BANG] = ACTIONS(162), - [sym_visibility_modifier] = ACTIONS(165), - [sym_opacity_modifier] = ACTIONS(168), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym_float] = ACTIONS(174), - [sym__hex] = ACTIONS(177), - [sym__decimal] = ACTIONS(180), - [sym__octal] = ACTIONS(177), - [sym__binary] = ACTIONS(177), - [sym__name] = ACTIONS(183), - [sym__upname] = ACTIONS(186), - }, - [7] = { - [sym__expression] = STATE(463), - [sym_binary_expression] = STATE(463), - [sym__expression_unit] = STATE(463), - [sym_record] = STATE(319), - [sym_todo] = STATE(463), - [sym_panic] = STATE(463), - [sym_echo] = STATE(463), - [sym_tuple] = STATE(312), - [sym_list] = STATE(463), - [sym__expression_bit_string] = STATE(463), - [sym_anonymous_function] = STATE(311), - [sym_block] = STATE(248), - [sym_case] = STATE(248), - [sym_boolean_negation] = STATE(463), - [sym_integer_negation] = STATE(463), - [sym_record_update] = STATE(319), - [sym__maybe_tuple_expression] = STATE(1825), - [sym_tuple_access] = STATE(248), - [sym__maybe_record_expression] = STATE(1820), - [sym_field_access] = STATE(248), - [sym__maybe_function_expression] = STATE(1638), - [sym_function_call] = STATE(248), - [sym_string] = STATE(463), - [sym_integer] = STATE(463), - [sym_identifier] = STATE(249), - [sym_constructor_name] = STATE(222), - [sym_remote_constructor_name] = STATE(222), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(65), - [anon_sym_as] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT_LT] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_fn] = ACTIONS(67), - [anon_sym_PIPE_PIPE] = ACTIONS(65), - [anon_sym_AMP_AMP] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LT_EQ] = ACTIONS(67), - [anon_sym_LT_DOT] = ACTIONS(65), - [anon_sym_LT_EQ_DOT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(67), - [anon_sym_GT_EQ] = ACTIONS(67), - [anon_sym_GT_DOT] = ACTIONS(65), - [anon_sym_GT_EQ_DOT] = ACTIONS(65), - [anon_sym_PIPE_GT] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_PLUS_DOT] = ACTIONS(65), - [anon_sym_DASH_DOT] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(67), - [anon_sym_STAR_DOT] = ACTIONS(65), - [anon_sym_SLASH_DOT] = ACTIONS(65), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_LT_GT] = ACTIONS(65), - [anon_sym_todo] = ACTIONS(67), - [anon_sym_panic] = ACTIONS(67), - [anon_sym_echo] = ACTIONS(67), - [anon_sym_case] = ACTIONS(67), - [anon_sym_let] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(67), - [anon_sym_use] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(65), - [sym_float] = ACTIONS(65), - [sym__hex] = ACTIONS(65), - [sym__decimal] = ACTIONS(67), - [sym__octal] = ACTIONS(65), - [sym__binary] = ACTIONS(65), - [sym__name] = ACTIONS(67), - [sym__upname] = ACTIONS(65), - }, - [8] = { - [sym__expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym__expression_unit] = STATE(522), - [sym_record] = STATE(214), - [sym_todo] = STATE(522), - [sym_panic] = STATE(522), - [sym_echo] = STATE(522), - [sym_tuple] = STATE(218), - [sym_list] = STATE(522), - [sym__expression_bit_string] = STATE(522), - [sym_anonymous_function] = STATE(220), - [sym_block] = STATE(202), - [sym_case] = STATE(202), - [sym_boolean_negation] = STATE(522), - [sym_integer_negation] = STATE(522), - [sym_record_update] = STATE(214), - [sym__maybe_tuple_expression] = STATE(1826), - [sym_tuple_access] = STATE(202), - [sym__maybe_record_expression] = STATE(1762), - [sym_field_access] = STATE(202), - [sym__maybe_function_expression] = STATE(1653), - [sym_function_call] = STATE(202), - [sym_string] = STATE(522), - [sym_integer] = STATE(522), - [sym_identifier] = STATE(211), - [sym_constructor_name] = STATE(187), - [sym_remote_constructor_name] = STATE(187), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT_LT] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_fn] = ACTIONS(67), - [anon_sym_PIPE_PIPE] = ACTIONS(65), - [anon_sym_AMP_AMP] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LT_EQ] = ACTIONS(67), - [anon_sym_LT_DOT] = ACTIONS(65), - [anon_sym_LT_EQ_DOT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(67), - [anon_sym_GT_EQ] = ACTIONS(67), - [anon_sym_GT_DOT] = ACTIONS(65), - [anon_sym_GT_EQ_DOT] = ACTIONS(65), - [anon_sym_PIPE_GT] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_PLUS_DOT] = ACTIONS(65), - [anon_sym_DASH_DOT] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(67), - [anon_sym_STAR_DOT] = ACTIONS(65), - [anon_sym_SLASH_DOT] = ACTIONS(65), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_LT_GT] = ACTIONS(65), - [anon_sym_todo] = ACTIONS(67), - [anon_sym_panic] = ACTIONS(67), - [anon_sym_echo] = ACTIONS(67), - [anon_sym_case] = ACTIONS(67), - [anon_sym_let] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(67), - [anon_sym_use] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(65), - [sym_float] = ACTIONS(65), - [sym__hex] = ACTIONS(65), - [sym__decimal] = ACTIONS(67), - [sym__octal] = ACTIONS(65), - [sym__binary] = ACTIONS(65), - [sym__name] = ACTIONS(67), - [sym__upname] = ACTIONS(65), - }, - [9] = { - [sym__expression] = STATE(620), - [sym_binary_expression] = STATE(620), - [sym__expression_unit] = STATE(620), - [sym_record] = STATE(584), - [sym_todo] = STATE(620), - [sym_panic] = STATE(620), - [sym_echo] = STATE(620), - [sym_tuple] = STATE(585), - [sym_list] = STATE(620), - [sym__expression_bit_string] = STATE(620), - [sym_anonymous_function] = STATE(588), - [sym_block] = STATE(562), - [sym_case] = STATE(562), - [sym_boolean_negation] = STATE(620), - [sym_integer_negation] = STATE(620), - [sym_record_update] = STATE(584), - [sym__maybe_tuple_expression] = STATE(1782), - [sym_tuple_access] = STATE(562), - [sym__maybe_record_expression] = STATE(1831), - [sym_field_access] = STATE(562), - [sym__maybe_function_expression] = STATE(1678), - [sym_function_call] = STATE(562), - [sym_string] = STATE(620), - [sym_integer] = STATE(620), - [sym_identifier] = STATE(563), - [sym_constructor_name] = STATE(555), - [sym_remote_constructor_name] = STATE(555), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT_LT] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_fn] = ACTIONS(191), - [anon_sym_PIPE_PIPE] = ACTIONS(65), - [anon_sym_AMP_AMP] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LT_EQ] = ACTIONS(67), - [anon_sym_LT_DOT] = ACTIONS(65), - [anon_sym_LT_EQ_DOT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(67), - [anon_sym_GT_EQ] = ACTIONS(67), - [anon_sym_GT_DOT] = ACTIONS(65), - [anon_sym_GT_EQ_DOT] = ACTIONS(65), - [anon_sym_PIPE_GT] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_PLUS_DOT] = ACTIONS(65), - [anon_sym_DASH_DOT] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(67), - [anon_sym_STAR_DOT] = ACTIONS(65), - [anon_sym_SLASH_DOT] = ACTIONS(65), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_LT_GT] = ACTIONS(65), - [anon_sym_todo] = ACTIONS(193), - [anon_sym_panic] = ACTIONS(195), - [anon_sym_echo] = ACTIONS(197), - [anon_sym_case] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(65), - [sym_float] = ACTIONS(65), - [sym__hex] = ACTIONS(65), - [sym__decimal] = ACTIONS(67), - [sym__octal] = ACTIONS(65), - [sym__binary] = ACTIONS(65), - [sym__discard_name] = ACTIONS(67), - [sym__name] = ACTIONS(67), - [sym__upname] = ACTIONS(65), - }, - [10] = { - [sym__expression] = STATE(961), - [sym_binary_expression] = STATE(961), - [sym__expression_unit] = STATE(961), - [sym_record] = STATE(931), - [sym_todo] = STATE(961), - [sym_panic] = STATE(961), - [sym_echo] = STATE(961), - [sym_tuple] = STATE(933), - [sym_list] = STATE(961), - [sym__expression_bit_string] = STATE(961), - [sym_anonymous_function] = STATE(935), - [sym_block] = STATE(873), - [sym_case] = STATE(873), - [sym_boolean_negation] = STATE(961), - [sym_integer_negation] = STATE(961), - [sym_record_update] = STATE(931), - [sym__maybe_tuple_expression] = STATE(1760), - [sym_tuple_access] = STATE(873), - [sym__maybe_record_expression] = STATE(1842), - [sym_field_access] = STATE(873), - [sym__maybe_function_expression] = STATE(1718), - [sym_function_call] = STATE(873), - [sym_string] = STATE(961), - [sym_integer] = STATE(961), - [sym_identifier] = STATE(862), - [sym_constructor_name] = STATE(856), - [sym_remote_constructor_name] = STATE(856), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_LT_LT] = ACTIONS(209), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_fn] = ACTIONS(211), - [anon_sym_DASH_GT] = ACTIONS(65), - [anon_sym_PIPE_PIPE] = ACTIONS(65), - [anon_sym_AMP_AMP] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LT_EQ] = ACTIONS(67), - [anon_sym_LT_DOT] = ACTIONS(65), - [anon_sym_LT_EQ_DOT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(67), - [anon_sym_GT_EQ] = ACTIONS(67), - [anon_sym_GT_DOT] = ACTIONS(65), - [anon_sym_GT_EQ_DOT] = ACTIONS(65), - [anon_sym_PIPE_GT] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_PLUS_DOT] = ACTIONS(65), - [anon_sym_DASH_DOT] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(67), - [anon_sym_STAR_DOT] = ACTIONS(65), - [anon_sym_SLASH_DOT] = ACTIONS(65), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_LT_GT] = ACTIONS(65), - [anon_sym_todo] = ACTIONS(213), - [anon_sym_panic] = ACTIONS(215), - [anon_sym_echo] = ACTIONS(217), - [anon_sym_case] = ACTIONS(219), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [sym__hex] = ACTIONS(227), - [sym__decimal] = ACTIONS(229), - [sym__octal] = ACTIONS(227), - [sym__binary] = ACTIONS(227), - [sym__name] = ACTIONS(231), - [sym__upname] = ACTIONS(233), - }, - [11] = { - [sym__expression] = STATE(913), - [sym_binary_expression] = STATE(913), - [sym__expression_unit] = STATE(913), - [sym_record] = STATE(679), - [sym_todo] = STATE(913), - [sym_panic] = STATE(913), - [sym_echo] = STATE(913), - [sym_tuple] = STATE(681), - [sym_list] = STATE(913), - [sym__expression_bit_string] = STATE(913), - [sym_anonymous_function] = STATE(685), - [sym_block] = STATE(644), - [sym_case] = STATE(644), - [sym_boolean_negation] = STATE(913), - [sym_integer_negation] = STATE(913), - [sym_record_update] = STATE(679), - [sym__maybe_tuple_expression] = STATE(1821), - [sym_tuple_access] = STATE(644), - [sym__maybe_record_expression] = STATE(1796), - [sym_field_access] = STATE(644), - [sym__maybe_function_expression] = STATE(1682), - [sym_function_call] = STATE(644), - [sym_string] = STATE(913), - [sym_integer] = STATE(913), - [sym_identifier] = STATE(649), - [sym_constructor_name] = STATE(642), - [sym_remote_constructor_name] = STATE(642), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_LBRACK] = ACTIONS(75), - [anon_sym_LT_LT] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_fn] = ACTIONS(79), - [anon_sym_PIPE_PIPE] = ACTIONS(65), - [anon_sym_AMP_AMP] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LT_EQ] = ACTIONS(67), - [anon_sym_LT_DOT] = ACTIONS(65), - [anon_sym_LT_EQ_DOT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(67), - [anon_sym_GT_EQ] = ACTIONS(67), - [anon_sym_GT_DOT] = ACTIONS(65), - [anon_sym_GT_EQ_DOT] = ACTIONS(65), - [anon_sym_PIPE_GT] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_PLUS_DOT] = ACTIONS(65), - [anon_sym_DASH_DOT] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(67), - [anon_sym_STAR_DOT] = ACTIONS(65), - [anon_sym_SLASH_DOT] = ACTIONS(65), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_LT_GT] = ACTIONS(65), - [anon_sym_todo] = ACTIONS(235), - [anon_sym_panic] = ACTIONS(237), - [anon_sym_echo] = ACTIONS(239), - [anon_sym_case] = ACTIONS(87), - [anon_sym_BANG] = ACTIONS(241), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_float] = ACTIONS(243), - [sym__hex] = ACTIONS(95), - [sym__decimal] = ACTIONS(97), - [sym__octal] = ACTIONS(95), - [sym__binary] = ACTIONS(95), - [sym__name] = ACTIONS(99), - [sym__upname] = ACTIONS(101), - }, - [12] = { - [aux_sym__statement_seq] = STATE(12), - [sym__statement] = STATE(12), - [sym__expression] = STATE(134), - [sym_binary_expression] = STATE(134), - [sym__expression_unit] = STATE(134), - [sym_record] = STATE(93), - [sym_todo] = STATE(134), - [sym_panic] = STATE(134), - [sym_echo] = STATE(134), - [sym_tuple] = STATE(92), - [sym_list] = STATE(134), - [sym__expression_bit_string] = STATE(134), - [sym_anonymous_function] = STATE(91), - [sym_block] = STATE(81), - [sym_case] = STATE(81), - [sym_let_assert] = STATE(12), - [sym_assert] = STATE(12), - [sym_let] = STATE(12), - [sym_use] = STATE(12), - [sym_boolean_negation] = STATE(134), - [sym_integer_negation] = STATE(134), - [sym_record_update] = STATE(93), - [sym__maybe_tuple_expression] = STATE(1863), - [sym_tuple_access] = STATE(81), - [sym__maybe_record_expression] = STATE(1862), - [sym_field_access] = STATE(81), - [sym__maybe_function_expression] = STATE(1652), - [sym_function_call] = STATE(81), - [sym_string] = STATE(134), - [sym_integer] = STATE(134), - [sym_identifier] = STATE(74), - [sym_constructor_name] = STATE(39), - [sym_remote_constructor_name] = STATE(39), - [ts_builtin_sym_end] = ACTIONS(245), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), - [anon_sym_if] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(245), - [anon_sym_import] = ACTIONS(247), - [anon_sym_type] = ACTIONS(247), - [anon_sym_const] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LT_LT] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_fn] = ACTIONS(264), - [anon_sym_external] = ACTIONS(247), - [anon_sym_todo] = ACTIONS(267), - [anon_sym_panic] = ACTIONS(270), - [anon_sym_echo] = ACTIONS(273), - [anon_sym_case] = ACTIONS(276), - [anon_sym_let] = ACTIONS(279), - [anon_sym_assert] = ACTIONS(282), - [anon_sym_use] = ACTIONS(285), - [anon_sym_BANG] = ACTIONS(288), - [sym_visibility_modifier] = ACTIONS(247), - [sym_opacity_modifier] = ACTIONS(247), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_float] = ACTIONS(294), - [sym__hex] = ACTIONS(297), - [sym__decimal] = ACTIONS(300), - [sym__octal] = ACTIONS(297), - [sym__binary] = ACTIONS(297), - [sym__name] = ACTIONS(303), - [sym__upname] = ACTIONS(306), - }, - [13] = { - [aux_sym__statement_seq] = STATE(12), - [sym__statement] = STATE(12), - [sym__expression] = STATE(134), - [sym_binary_expression] = STATE(134), - [sym__expression_unit] = STATE(134), - [sym_record] = STATE(93), - [sym_todo] = STATE(134), - [sym_panic] = STATE(134), - [sym_echo] = STATE(134), - [sym_tuple] = STATE(92), - [sym_list] = STATE(134), - [sym__expression_bit_string] = STATE(134), - [sym_anonymous_function] = STATE(91), - [sym_block] = STATE(81), - [sym_case] = STATE(81), - [sym_let_assert] = STATE(12), - [sym_assert] = STATE(12), - [sym_let] = STATE(12), - [sym_use] = STATE(12), - [sym_boolean_negation] = STATE(134), - [sym_integer_negation] = STATE(134), - [sym_record_update] = STATE(93), - [sym__maybe_tuple_expression] = STATE(1863), - [sym_tuple_access] = STATE(81), - [sym__maybe_record_expression] = STATE(1862), - [sym_field_access] = STATE(81), - [sym__maybe_function_expression] = STATE(1652), - [sym_function_call] = STATE(81), - [sym_string] = STATE(134), - [sym_integer] = STATE(134), - [sym_identifier] = STATE(74), - [sym_constructor_name] = STATE(39), - [sym_remote_constructor_name] = STATE(39), - [ts_builtin_sym_end] = ACTIONS(309), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), - [anon_sym_if] = ACTIONS(311), - [anon_sym_LBRACE] = ACTIONS(313), - [anon_sym_AT] = ACTIONS(309), - [anon_sym_import] = ACTIONS(311), - [anon_sym_type] = ACTIONS(311), - [anon_sym_const] = ACTIONS(311), - [anon_sym_POUND] = ACTIONS(316), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_LT_LT] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(325), - [anon_sym_fn] = ACTIONS(328), - [anon_sym_external] = ACTIONS(311), - [anon_sym_todo] = ACTIONS(331), - [anon_sym_panic] = ACTIONS(334), - [anon_sym_echo] = ACTIONS(337), - [anon_sym_case] = ACTIONS(340), - [anon_sym_let] = ACTIONS(343), - [anon_sym_assert] = ACTIONS(346), - [anon_sym_use] = ACTIONS(349), - [anon_sym_BANG] = ACTIONS(352), - [sym_visibility_modifier] = ACTIONS(311), - [sym_opacity_modifier] = ACTIONS(311), - [anon_sym_DQUOTE] = ACTIONS(355), - [sym_float] = ACTIONS(358), - [sym__hex] = ACTIONS(361), - [sym__decimal] = ACTIONS(364), - [sym__octal] = ACTIONS(361), - [sym__binary] = ACTIONS(361), - [sym__name] = ACTIONS(367), - [sym__upname] = ACTIONS(370), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(377), 1, - anon_sym_LPAREN, - STATE(67), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(375), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(373), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [73] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(381), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(379), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [141] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(385), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(383), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [209] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(389), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(387), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [277] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(393), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(391), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [345] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(397), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(395), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [413] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(401), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(399), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [481] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(405), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(403), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [549] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(409), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(407), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [617] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(413), 1, - anon_sym_RBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(433), 1, - anon_sym_let, - ACTIONS(435), 1, - anon_sym_assert, - ACTIONS(437), 1, - anon_sym_use, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(443), 1, - sym_float, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(49), 6, - aux_sym__statement_seq, - sym__statement, - sym_let_assert, - sym_assert, - sym_let, - sym_use, - STATE(515), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [745] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(455), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(453), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [813] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(433), 1, - anon_sym_let, - ACTIONS(435), 1, - anon_sym_assert, - ACTIONS(437), 1, - anon_sym_use, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(443), 1, - sym_float, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(457), 1, - anon_sym_RBRACE, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(31), 6, - aux_sym__statement_seq, - sym__statement, - sym_let_assert, - sym_assert, - sym_let, - sym_use, - STATE(515), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [941] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(465), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(459), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(461), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [1013] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(468), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(459), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(461), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [1085] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(433), 1, - anon_sym_let, - ACTIONS(435), 1, - anon_sym_assert, - ACTIONS(437), 1, - anon_sym_use, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(443), 1, - sym_float, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(472), 1, - anon_sym_RBRACE, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(40), 6, - aux_sym__statement_seq, - sym__statement, - sym_let_assert, - sym_assert, - sym_let, - sym_use, - STATE(515), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [1213] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(476), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(474), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [1281] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(433), 1, - anon_sym_let, - ACTIONS(435), 1, - anon_sym_assert, - ACTIONS(437), 1, - anon_sym_use, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(443), 1, - sym_float, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(478), 1, - anon_sym_RBRACE, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(46), 6, - aux_sym__statement_seq, - sym__statement, - sym_let_assert, - sym_assert, - sym_let, - sym_use, - STATE(515), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [1409] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(433), 1, - anon_sym_let, - ACTIONS(435), 1, - anon_sym_assert, - ACTIONS(437), 1, - anon_sym_use, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(443), 1, - sym_float, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(480), 1, - anon_sym_RBRACE, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(49), 6, - aux_sym__statement_seq, - sym__statement, - sym_let_assert, - sym_assert, - sym_let, - sym_use, - STATE(515), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [1537] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(484), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(482), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [1605] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(433), 1, - anon_sym_let, - ACTIONS(435), 1, - anon_sym_assert, - ACTIONS(437), 1, - anon_sym_use, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(443), 1, - sym_float, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(486), 1, - anon_sym_RBRACE, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(23), 6, - aux_sym__statement_seq, - sym__statement, - sym_let_assert, - sym_assert, - sym_let, - sym_use, - STATE(515), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [1733] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(433), 1, - anon_sym_let, - ACTIONS(435), 1, - anon_sym_assert, - ACTIONS(437), 1, - anon_sym_use, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(443), 1, - sym_float, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(488), 1, - anon_sym_RBRACE, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(49), 6, - aux_sym__statement_seq, - sym__statement, - sym_let_assert, - sym_assert, - sym_let, - sym_use, - STATE(515), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [1861] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(433), 1, - anon_sym_let, - ACTIONS(435), 1, - anon_sym_assert, - ACTIONS(437), 1, - anon_sym_use, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(443), 1, - sym_float, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(490), 1, - anon_sym_RBRACE, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(34), 6, - aux_sym__statement_seq, - sym__statement, - sym_let_assert, - sym_assert, - sym_let, - sym_use, - STATE(515), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [1989] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(433), 1, - anon_sym_let, - ACTIONS(435), 1, - anon_sym_assert, - ACTIONS(437), 1, - anon_sym_use, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(443), 1, - sym_float, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(492), 1, - anon_sym_RBRACE, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(49), 6, - aux_sym__statement_seq, - sym__statement, - sym_let_assert, - sym_assert, - sym_let, - sym_use, - STATE(515), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [2117] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(496), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(494), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [2185] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(433), 1, - anon_sym_let, - ACTIONS(435), 1, - anon_sym_assert, - ACTIONS(437), 1, - anon_sym_use, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(443), 1, - sym_float, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(498), 1, - anon_sym_RBRACE, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(36), 6, - aux_sym__statement_seq, - sym__statement, - sym_let_assert, - sym_assert, - sym_let, - sym_use, - STATE(515), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [2313] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(500), 1, - anon_sym_LPAREN, - STATE(114), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(375), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(373), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [2385] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(433), 1, - anon_sym_let, - ACTIONS(435), 1, - anon_sym_assert, - ACTIONS(437), 1, - anon_sym_use, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(443), 1, - sym_float, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(502), 1, - anon_sym_RBRACE, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(49), 6, - aux_sym__statement_seq, - sym__statement, - sym_let_assert, - sym_assert, - sym_let, - sym_use, - STATE(515), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [2513] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(506), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(504), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [2581] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(510), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(508), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [2649] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(514), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(512), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [2717] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(433), 1, - anon_sym_let, - ACTIONS(435), 1, - anon_sym_assert, - ACTIONS(437), 1, - anon_sym_use, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(443), 1, - sym_float, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(516), 1, - anon_sym_RBRACE, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(45), 6, - aux_sym__statement_seq, - sym__statement, - sym_let_assert, - sym_assert, - sym_let, - sym_use, - STATE(515), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [2845] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(433), 1, - anon_sym_let, - ACTIONS(435), 1, - anon_sym_assert, - ACTIONS(437), 1, - anon_sym_use, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(443), 1, - sym_float, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(518), 1, - anon_sym_RBRACE, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(49), 6, - aux_sym__statement_seq, - sym__statement, - sym_let_assert, - sym_assert, - sym_let, - sym_use, - STATE(515), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [2973] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(433), 1, - anon_sym_let, - ACTIONS(435), 1, - anon_sym_assert, - ACTIONS(437), 1, - anon_sym_use, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(443), 1, - sym_float, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(520), 1, - anon_sym_RBRACE, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(49), 6, - aux_sym__statement_seq, - sym__statement, - sym_let_assert, - sym_assert, - sym_let, - sym_use, - STATE(515), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [3101] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(524), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(522), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [3169] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(528), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(526), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [3237] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(245), 1, - anon_sym_RBRACE, - ACTIONS(530), 1, - anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_POUND, - ACTIONS(536), 1, - anon_sym_LBRACK, - ACTIONS(539), 1, - anon_sym_LT_LT, - ACTIONS(542), 1, - anon_sym_DASH, - ACTIONS(545), 1, - anon_sym_fn, - ACTIONS(548), 1, - anon_sym_todo, - ACTIONS(551), 1, - anon_sym_panic, - ACTIONS(554), 1, - anon_sym_echo, - ACTIONS(557), 1, - anon_sym_case, - ACTIONS(560), 1, - anon_sym_let, - ACTIONS(563), 1, - anon_sym_assert, - ACTIONS(566), 1, - anon_sym_use, - ACTIONS(569), 1, - anon_sym_BANG, - ACTIONS(572), 1, - anon_sym_DQUOTE, - ACTIONS(575), 1, - sym_float, - ACTIONS(581), 1, - sym__decimal, - ACTIONS(584), 1, - sym__name, - ACTIONS(587), 1, - sym__upname, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(578), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(49), 6, - aux_sym__statement_seq, - sym__statement, - sym_let_assert, - sym_assert, - sym_let, - sym_use, - STATE(515), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [3365] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(592), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(590), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [3432] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(528), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(526), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [3499] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(496), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(494), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [3566] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(510), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(508), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [3633] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(514), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(512), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [3700] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(596), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(594), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [3767] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(604), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(600), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(598), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [3838] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(506), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(504), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [3905] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(608), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(606), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [3972] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(610), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(598), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(600), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [4041] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(614), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(612), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [4108] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(405), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(403), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [4175] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(620), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(616), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(618), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [4244] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(622), 1, - anon_sym_LPAREN, - ACTIONS(624), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(618), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(616), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [4315] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(628), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(626), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [4382] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(632), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(630), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [4449] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(636), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(634), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [4516] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(640), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(638), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [4583] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(385), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(383), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [4650] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(642), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(459), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(461), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [4719] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(455), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(453), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [4786] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(381), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(379), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [4853] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(401), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(399), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [4920] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(397), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(395), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [4987] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(459), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [5058] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(524), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(522), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [5125] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(648), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(459), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(461), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [5194] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(476), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(474), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [5261] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(459), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(461), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [5330] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(484), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(482), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [5397] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(409), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(407), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [5464] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(465), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(459), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [5535] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(389), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(387), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [5602] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(393), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(391), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [5669] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(650), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(652), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [5735] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(654), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(656), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [5801] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(666), 1, - anon_sym_PIPE_PIPE, - ACTIONS(668), 1, - anon_sym_AMP_AMP, - ACTIONS(676), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(662), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(664), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(670), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(678), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(672), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(674), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(680), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(658), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(660), 19, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [5887] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(682), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(684), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [5953] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(636), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(634), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [6019] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(686), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(688), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [6085] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(690), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(692), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [6151] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(459), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [6219] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(648), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(459), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [6287] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(642), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(459), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [6355] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(694), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(696), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [6421] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(698), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(700), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [6487] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(614), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(612), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [6553] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(666), 1, - anon_sym_PIPE_PIPE, - ACTIONS(668), 1, - anon_sym_AMP_AMP, - ACTIONS(676), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(662), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(664), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(670), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(678), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(672), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(674), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(680), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(702), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(704), 19, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [6639] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(596), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(594), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [6705] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(706), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(708), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [6771] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(710), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(712), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [6837] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(714), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(716), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [6903] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(718), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(720), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [6969] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(666), 1, - anon_sym_PIPE_PIPE, - ACTIONS(668), 1, - anon_sym_AMP_AMP, - ACTIONS(676), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(662), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(664), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(670), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(678), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(672), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(674), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(680), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(722), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(724), 19, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [7055] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(666), 1, - anon_sym_PIPE_PIPE, - ACTIONS(668), 1, - anon_sym_AMP_AMP, - ACTIONS(676), 1, - anon_sym_PIPE_GT, - ACTIONS(730), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(662), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(664), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(670), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(678), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(672), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(674), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(680), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(726), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(728), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [7143] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(732), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(734), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [7209] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(676), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(662), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(664), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(678), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(672), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(674), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(680), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 16, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(712), 19, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [7289] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(736), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(738), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [7355] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(632), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(630), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [7421] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(740), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(742), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [7487] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(666), 1, - anon_sym_PIPE_PIPE, - ACTIONS(668), 1, - anon_sym_AMP_AMP, - ACTIONS(676), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(662), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(664), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(670), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(678), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(672), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(674), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(680), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(744), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(746), 19, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [7573] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(666), 1, - anon_sym_PIPE_PIPE, - ACTIONS(668), 1, - anon_sym_AMP_AMP, - ACTIONS(676), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(662), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(664), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(670), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(678), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(672), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(674), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(680), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(748), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(750), 19, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [7659] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(484), 21, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(482), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [7725] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(752), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(754), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [7791] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(640), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(638), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [7857] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(710), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(712), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [7923] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(756), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(758), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [7989] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(662), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(664), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(678), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(680), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 21, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(712), 23, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [8063] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(760), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(762), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [8129] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(628), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(626), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [8195] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(676), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(662), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(664), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(678), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(680), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 20, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(712), 23, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [8271] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(608), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(606), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [8337] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(592), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(590), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [8403] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(764), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(767), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [8469] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(770), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(772), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [8535] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(676), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(662), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(664), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(670), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(678), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(672), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(674), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(680), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(712), 19, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [8617] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(668), 1, - anon_sym_AMP_AMP, - ACTIONS(676), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(662), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(664), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(670), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(678), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(672), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(674), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(680), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(712), 19, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [8701] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(662), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(680), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 23, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(712), 25, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [8771] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(716), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(714), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [8836] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(656), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(654), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [8901] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(778), 1, - anon_sym_PIPE_PIPE, - ACTIONS(780), 1, - anon_sym_AMP_AMP, - ACTIONS(788), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(774), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(790), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(784), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(786), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(792), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(748), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(750), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [8986] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(778), 1, - anon_sym_PIPE_PIPE, - ACTIONS(780), 1, - anon_sym_AMP_AMP, - ACTIONS(788), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(774), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(790), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(784), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(786), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(792), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(794), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(796), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [9071] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(712), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(710), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [9136] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(778), 1, - anon_sym_PIPE_PIPE, - ACTIONS(780), 1, - anon_sym_AMP_AMP, - ACTIONS(788), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(774), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(790), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(784), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(786), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(792), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(702), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(704), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [9221] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(778), 1, - anon_sym_PIPE_PIPE, - ACTIONS(780), 1, - anon_sym_AMP_AMP, - ACTIONS(788), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(774), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(790), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(784), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(786), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(792), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(798), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(800), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [9306] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(708), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(706), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [9371] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(692), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(690), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [9436] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(738), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(736), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [9501] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(734), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(732), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [9566] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(696), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(694), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [9631] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(684), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(682), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [9696] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(688), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(686), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [9761] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(754), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(752), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [9826] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(778), 1, - anon_sym_PIPE_PIPE, - ACTIONS(780), 1, - anon_sym_AMP_AMP, - ACTIONS(788), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(774), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(790), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(784), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(786), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(792), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(744), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(746), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [9911] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(652), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(650), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [9976] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(778), 1, - anon_sym_PIPE_PIPE, - ACTIONS(780), 1, - anon_sym_AMP_AMP, - ACTIONS(788), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(774), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(790), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(784), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(786), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(792), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(802), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(804), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [10061] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(720), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(718), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [10126] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(767), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(764), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [10191] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(778), 1, - anon_sym_PIPE_PIPE, - ACTIONS(780), 1, - anon_sym_AMP_AMP, - ACTIONS(788), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(774), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(790), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(784), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(786), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(792), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(806), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(808), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [10276] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(742), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(740), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [10341] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(774), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(792), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 23, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(712), 24, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [10410] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(409), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(407), 34, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [10475] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(778), 1, - anon_sym_PIPE_PIPE, - ACTIONS(780), 1, - anon_sym_AMP_AMP, - ACTIONS(788), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(774), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(790), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(784), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(786), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(792), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(810), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(812), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [10560] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(758), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(756), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [10625] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(780), 1, - anon_sym_AMP_AMP, - ACTIONS(788), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(774), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(790), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(784), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(786), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(792), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(712), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [10708] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(788), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(774), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(790), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(784), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(786), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(792), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(712), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [10789] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(788), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(774), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(790), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(784), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(786), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(792), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 16, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(712), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [10868] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(778), 1, - anon_sym_PIPE_PIPE, - ACTIONS(780), 1, - anon_sym_AMP_AMP, - ACTIONS(788), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(774), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(790), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(784), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(786), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(792), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(722), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(724), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [10953] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(762), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(760), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [11018] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(778), 1, - anon_sym_PIPE_PIPE, - ACTIONS(780), 1, - anon_sym_AMP_AMP, - ACTIONS(788), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(774), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(790), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(784), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(786), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(792), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(658), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(660), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [11103] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(788), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(774), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(790), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(792), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 20, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(712), 22, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [11178] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(772), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(770), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [11243] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(700), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(698), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [11308] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(774), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(790), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(792), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 21, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(712), 22, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [11381] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(712), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(710), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [11446] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(814), 1, - anon_sym_RPAREN, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(818), 1, - anon_sym_DOT_DOT, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1592), 1, - sym_argument, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [11572] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(828), 1, - anon_sym_RPAREN, - ACTIONS(830), 1, - anon_sym_DOT_DOT, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1553), 1, - sym_argument, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [11698] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(832), 1, - anon_sym_RPAREN, - ACTIONS(834), 1, - anon_sym_DOT_DOT, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1554), 1, - sym_argument, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [11824] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(836), 1, - anon_sym_RPAREN, - ACTIONS(838), 1, - anon_sym_DOT_DOT, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1498), 1, - sym_argument, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [11950] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(840), 1, - anon_sym_RPAREN, - ACTIONS(842), 1, - anon_sym_DOT_DOT, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1560), 1, - sym_argument, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [12076] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(393), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(391), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [12140] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(476), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(474), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [12204] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(405), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(403), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [12268] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(844), 1, - anon_sym_RPAREN, - ACTIONS(846), 1, - anon_sym_DOT_DOT, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1438), 1, - sym_argument, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [12394] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(848), 1, - anon_sym_RPAREN, - ACTIONS(850), 1, - anon_sym_DOT_DOT, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1524), 1, - sym_argument, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [12520] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(852), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1702), 1, - sym_argument, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [12643] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(854), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1702), 1, - sym_argument, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [12766] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(856), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1702), 1, - sym_argument, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [12889] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(858), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1702), 1, - sym_argument, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [13012] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(860), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1702), 1, - sym_argument, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [13135] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(862), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1702), 1, - sym_argument, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [13258] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(864), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1702), 1, - sym_argument, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [13381] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(866), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1702), 1, - sym_argument, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [13504] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(844), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1438), 1, - sym_argument, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [13627] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(848), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1524), 1, - sym_argument, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [13750] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(814), 1, - anon_sym_RPAREN, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1592), 1, - sym_argument, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [13873] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(828), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1553), 1, - sym_argument, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [13996] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(868), 1, - anon_sym_LPAREN, - STATE(223), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(375), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(373), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [14063] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(836), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1498), 1, - sym_argument, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [14186] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(870), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1702), 1, - sym_argument, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [14309] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(832), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1554), 1, - sym_argument, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [14432] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(872), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1702), 1, - sym_argument, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [14555] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(840), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1560), 1, - sym_argument, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [14678] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(874), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1702), 1, - sym_argument, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [14801] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(876), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1702), 1, - sym_argument, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [14924] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(878), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1702), 1, - sym_argument, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [15047] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - ACTIONS(880), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1702), 1, - sym_argument, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [15170] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(708), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(706), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [15232] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(822), 1, - sym_float, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(826), 1, - sym__name, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1648), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1702), 1, - sym_argument, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1844), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [15352] = 32, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(824), 1, - sym__discard_name, - ACTIONS(884), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1630), 1, - sym_hole, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(882), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(919), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [15470] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(385), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(383), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [15532] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(528), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(526), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [15594] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(465), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(459), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [15660] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(514), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(512), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [15722] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(716), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(714), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [15784] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(455), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(453), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [15846] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(524), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(522), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [15908] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(389), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(387), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [15970] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(506), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(504), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16032] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(397), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(395), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16094] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(510), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(508), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16156] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(886), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(459), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16222] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(401), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(399), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16284] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(496), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(494), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16346] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(642), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(459), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16409] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(632), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(630), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16470] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(592), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(590), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16531] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(636), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(634), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16592] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(648), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(459), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16655] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(596), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(594), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16716] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(459), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16779] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(614), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(612), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16840] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(890), 1, - anon_sym_LPAREN, - STATE(293), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(375), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(373), 27, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16905] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(640), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(638), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16966] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(608), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(606), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [17027] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(628), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(626), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [17088] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(720), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(718), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [17148] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(455), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(453), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [17208] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(892), 1, - anon_sym_RBRACK, - ACTIONS(894), 1, - anon_sym_DOT_DOT, - ACTIONS(896), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [17322] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(656), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(654), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [17382] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(898), 1, - anon_sym_RBRACK, - ACTIONS(900), 1, - anon_sym_DOT_DOT, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [17496] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(902), 1, - anon_sym_RBRACK, - ACTIONS(904), 1, - anon_sym_DOT_DOT, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [17610] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(908), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(906), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(923), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [17722] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(767), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(764), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [17782] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(652), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(650), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [17842] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(910), 1, - anon_sym_RBRACK, - ACTIONS(912), 1, - anon_sym_DOT_DOT, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [17956] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(742), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(740), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [18016] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(914), 1, - anon_sym_RBRACK, - ACTIONS(916), 1, - anon_sym_DOT_DOT, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [18130] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(405), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(403), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [18190] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(758), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(756), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [18250] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(762), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(760), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [18310] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(772), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(770), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [18370] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(738), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(736), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [18430] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(918), 1, - anon_sym_RBRACK, - ACTIONS(920), 1, - anon_sym_DOT_DOT, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [18544] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(922), 1, - anon_sym_RBRACK, - ACTIONS(924), 1, - anon_sym_DOT_DOT, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [18658] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(734), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(732), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [18718] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(696), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(694), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [18778] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(754), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(752), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [18838] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(465), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(459), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [18902] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(926), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(459), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [18966] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(930), 1, - anon_sym_RBRACK, - ACTIONS(932), 1, - anon_sym_DOT_DOT, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [19080] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(700), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(698), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [19140] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(385), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(383), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [19200] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(684), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(682), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [19260] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(934), 1, - anon_sym_RBRACK, - ACTIONS(936), 1, - anon_sym_DOT_DOT, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [19374] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(506), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(504), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [19434] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(938), 1, - anon_sym_RBRACK, - ACTIONS(940), 1, - anon_sym_DOT_DOT, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [19548] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(942), 1, - anon_sym_RBRACK, - ACTIONS(944), 1, - anon_sym_DOT_DOT, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [19662] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(946), 1, - anon_sym_RBRACK, - ACTIONS(948), 1, - anon_sym_DOT_DOT, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [19776] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(409), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(407), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [19836] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(514), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(512), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [19896] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(950), 1, - anon_sym_RBRACK, - ACTIONS(952), 1, - anon_sym_DOT_DOT, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [20010] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(692), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(690), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [20070] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(484), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(482), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [20130] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(476), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(474), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [20190] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(528), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(526), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [20250] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(954), 1, - anon_sym_RBRACK, - ACTIONS(956), 1, - anon_sym_DOT_DOT, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [20364] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(381), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(379), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [20424] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(389), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(387), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [20484] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(393), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(391), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [20544] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(397), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(395), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [20604] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(401), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(399), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [20664] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(524), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(522), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [20724] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(496), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(494), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [20784] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(510), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(508), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [20844] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(688), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(686), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [20904] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(960), 1, - anon_sym_echo, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(964), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(718), 1, - sym_pipeline_echo, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(910), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [21015] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(966), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1813), 1, - sym_case_subjects, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(878), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [21126] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(596), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(594), 27, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [21185] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(203), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - anon_sym_POUND, - ACTIONS(207), 1, - anon_sym_LBRACK, - ACTIONS(209), 1, - anon_sym_LT_LT, - ACTIONS(211), 1, - anon_sym_fn, - ACTIONS(213), 1, - anon_sym_todo, - ACTIONS(215), 1, - anon_sym_panic, - ACTIONS(219), 1, - anon_sym_case, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(231), 1, - sym__name, - ACTIONS(233), 1, - sym__upname, - ACTIONS(968), 1, - anon_sym_DASH, - ACTIONS(970), 1, - anon_sym_echo, - ACTIONS(972), 1, - anon_sym_BANG, - ACTIONS(974), 1, - sym_float, - STATE(862), 1, - sym_identifier, - STATE(933), 1, - sym_tuple, - STATE(935), 1, - sym_anonymous_function, - STATE(972), 1, - sym_pipeline_echo, - STATE(1718), 1, - sym__maybe_function_expression, - STATE(1760), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(856), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(931), 2, - sym_record, - sym_record_update, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(873), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(971), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [21296] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(632), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(630), 27, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [21355] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(976), 1, - anon_sym_RBRACK, - ACTIONS(978), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(843), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [21466] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(980), 1, - anon_sym_RBRACK, - ACTIONS(982), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(854), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [21577] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(984), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [21688] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(628), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(626), 27, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [21747] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(986), 1, - anon_sym_RBRACK, - ACTIONS(988), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(853), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [21858] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(990), 1, - anon_sym_RPAREN, - ACTIONS(992), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(901), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [21969] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(994), 1, - anon_sym_RBRACK, - ACTIONS(996), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(846), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [22080] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(614), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(612), 27, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [22139] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(592), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(590), 27, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [22198] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(998), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [22309] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(1000), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [22420] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(1002), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [22531] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(640), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(638), 27, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [22590] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(966), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1763), 1, - sym_case_subjects, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(878), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [22701] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(1004), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [22812] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(966), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1800), 1, - sym_case_subjects, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(878), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [22923] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1006), 1, - anon_sym_RPAREN, - ACTIONS(1008), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(899), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [23034] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(1010), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [23145] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1012), 1, - anon_sym_LBRACE, - ACTIONS(1014), 1, - anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_LBRACK, - ACTIONS(1018), 1, - anon_sym_LT_LT, - ACTIONS(1020), 1, - anon_sym_DASH, - ACTIONS(1022), 1, - anon_sym_fn, - ACTIONS(1024), 1, - anon_sym_todo, - ACTIONS(1026), 1, - anon_sym_panic, - ACTIONS(1028), 1, - anon_sym_echo, - ACTIONS(1030), 1, - anon_sym_case, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1034), 1, - anon_sym_DQUOTE, - ACTIONS(1036), 1, - sym_float, - ACTIONS(1040), 1, - sym__decimal, - ACTIONS(1042), 1, - sym__name, - ACTIONS(1044), 1, - sym__upname, - STATE(249), 1, - sym_identifier, - STATE(311), 1, - sym_anonymous_function, - STATE(312), 1, - sym_tuple, - STATE(428), 1, - sym_pipeline_echo, - STATE(1638), 1, - sym__maybe_function_expression, - STATE(1820), 1, - sym__maybe_record_expression, - STATE(1825), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(222), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(319), 2, - sym_record, - sym_record_update, - ACTIONS(1038), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(248), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(429), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [23256] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(1046), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [23367] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1048), 1, - anon_sym_LBRACE, - ACTIONS(1050), 1, - anon_sym_POUND, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT_LT, - ACTIONS(1056), 1, - anon_sym_DASH, - ACTIONS(1058), 1, - anon_sym_fn, - ACTIONS(1060), 1, - anon_sym_todo, - ACTIONS(1062), 1, - anon_sym_panic, - ACTIONS(1064), 1, - anon_sym_echo, - ACTIONS(1066), 1, - anon_sym_case, - ACTIONS(1068), 1, - anon_sym_BANG, - ACTIONS(1070), 1, - anon_sym_DQUOTE, - ACTIONS(1072), 1, - sym_float, - ACTIONS(1076), 1, - sym__decimal, - ACTIONS(1078), 1, - sym__name, - ACTIONS(1080), 1, - sym__upname, - STATE(27), 1, - sym_identifier, - STATE(76), 1, - sym_tuple, - STATE(78), 1, - sym_anonymous_function, - STATE(115), 1, - sym_pipeline_echo, - STATE(1608), 1, - sym__maybe_function_expression, - STATE(1809), 1, - sym__maybe_record_expression, - STATE(1876), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(14), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(69), 2, - sym_record, - sym_record_update, - ACTIONS(1074), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(26), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(117), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [23478] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(1082), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [23589] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1084), 1, - anon_sym_RPAREN, - ACTIONS(1086), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(865), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [23700] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(608), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(606), 27, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [23759] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(636), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(634), 27, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [23818] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1088), 1, - anon_sym_RPAREN, - ACTIONS(1090), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(900), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [23929] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(966), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1824), 1, - sym_case_subjects, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(878), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [24040] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(966), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1794), 1, - sym_case_subjects, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(878), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [24151] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - ACTIONS(191), 1, - anon_sym_fn, - ACTIONS(193), 1, - anon_sym_todo, - ACTIONS(195), 1, - anon_sym_panic, - ACTIONS(199), 1, - anon_sym_case, - ACTIONS(1092), 1, - anon_sym_POUND, - ACTIONS(1094), 1, - anon_sym_LBRACK, - ACTIONS(1096), 1, - anon_sym_LT_LT, - ACTIONS(1098), 1, - anon_sym_DASH, - ACTIONS(1100), 1, - anon_sym_echo, - ACTIONS(1102), 1, - anon_sym_BANG, - ACTIONS(1104), 1, - anon_sym_DQUOTE, - ACTIONS(1106), 1, - sym_float, - ACTIONS(1110), 1, - sym__decimal, - ACTIONS(1112), 1, - sym__name, - ACTIONS(1114), 1, - sym__upname, - STATE(563), 1, - sym_identifier, - STATE(585), 1, - sym_tuple, - STATE(588), 1, - sym_anonymous_function, - STATE(612), 1, - sym_pipeline_echo, - STATE(1678), 1, - sym__maybe_function_expression, - STATE(1782), 1, - sym__maybe_tuple_expression, - STATE(1831), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(555), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(584), 2, - sym_record, - sym_record_update, - ACTIONS(1108), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(562), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(590), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [24262] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(1116), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [24373] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(459), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [24434] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(648), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(459), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [24495] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1118), 1, - anon_sym_RPAREN, - ACTIONS(1120), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(879), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [24606] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1122), 1, - anon_sym_RBRACK, - ACTIONS(1124), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(860), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [24717] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1126), 1, - anon_sym_LPAREN, - ACTIONS(1128), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(600), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(598), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [24780] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1130), 1, - anon_sym_RBRACK, - ACTIONS(1132), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(844), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [24891] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(966), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1835), 1, - sym_case_subjects, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(878), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [25002] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(1134), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [25113] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(642), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(459), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [25174] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(1136), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [25285] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(381), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(379), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [25344] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1138), 1, - anon_sym_echo, - ACTIONS(1140), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(718), 1, - sym_pipeline_echo, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(804), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [25455] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1142), 1, - anon_sym_LPAREN, - ACTIONS(1144), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(618), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(616), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [25518] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1146), 1, - anon_sym_RBRACK, - ACTIONS(1148), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(845), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [25629] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(966), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - STATE(1846), 1, - sym_case_subjects, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(878), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [25740] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1150), 1, - anon_sym_RPAREN, - ACTIONS(1152), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(872), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [25851] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(39), 1, - anon_sym_case, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1154), 1, - anon_sym_fn, - ACTIONS(1156), 1, - anon_sym_echo, - ACTIONS(1158), 1, - sym_float, - STATE(74), 1, - sym_identifier, - STATE(91), 1, - sym_anonymous_function, - STATE(92), 1, - sym_tuple, - STATE(164), 1, - sym_pipeline_echo, - STATE(1652), 1, - sym__maybe_function_expression, - STATE(1862), 1, - sym__maybe_record_expression, - STATE(1863), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(39), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(93), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(81), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(163), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [25962] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1160), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(618), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(616), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [26023] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1162), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(600), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(598), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [26084] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1164), 1, - anon_sym_echo, - ACTIONS(1166), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(520), 1, - sym_pipeline_echo, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(519), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [26195] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1168), 1, - anon_sym_RPAREN, - ACTIONS(1170), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(881), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [26306] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(1172), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [26417] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(1174), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [26528] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - ACTIONS(1176), 1, - anon_sym_RPAREN, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [26639] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - ACTIONS(191), 1, - anon_sym_fn, - ACTIONS(193), 1, - anon_sym_todo, - ACTIONS(195), 1, - anon_sym_panic, - ACTIONS(197), 1, - anon_sym_echo, - ACTIONS(199), 1, - anon_sym_case, - ACTIONS(1092), 1, - anon_sym_POUND, - ACTIONS(1094), 1, - anon_sym_LBRACK, - ACTIONS(1096), 1, - anon_sym_LT_LT, - ACTIONS(1098), 1, - anon_sym_DASH, - ACTIONS(1102), 1, - anon_sym_BANG, - ACTIONS(1104), 1, - anon_sym_DQUOTE, - ACTIONS(1110), 1, - sym__decimal, - ACTIONS(1112), 1, - sym__name, - ACTIONS(1114), 1, - sym__upname, - ACTIONS(1178), 1, - sym_float, - STATE(563), 1, - sym_identifier, - STATE(585), 1, - sym_tuple, - STATE(588), 1, - sym_anonymous_function, - STATE(1678), 1, - sym__maybe_function_expression, - STATE(1782), 1, - sym__maybe_tuple_expression, - STATE(1831), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(555), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(584), 2, - sym_record, - sym_record_update, - ACTIONS(1108), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(562), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(622), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [26747] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1188), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1190), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1184), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1186), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1192), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(712), 12, - anon_sym_as, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(710), 15, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [26819] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1194), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(821), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [26927] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - sym_float, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(810), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [27035] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(708), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(706), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [27093] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1196), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(820), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [27201] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1198), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(717), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [27309] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1200), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(817), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [27417] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1202), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(814), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [27525] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1204), 1, - anon_sym_GT_GT, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1727), 1, - sym_expression_bit_string_segment, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [27637] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1216), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(813), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [27745] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1218), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(808), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [27853] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1220), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(807), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [27961] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1222), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1727), 1, - sym_expression_bit_string_segment, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [28073] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(1224), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(915), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [28181] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1048), 1, - anon_sym_LBRACE, - ACTIONS(1050), 1, - anon_sym_POUND, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT_LT, - ACTIONS(1056), 1, - anon_sym_DASH, - ACTIONS(1058), 1, - anon_sym_fn, - ACTIONS(1060), 1, - anon_sym_todo, - ACTIONS(1062), 1, - anon_sym_panic, - ACTIONS(1066), 1, - anon_sym_case, - ACTIONS(1068), 1, - anon_sym_BANG, - ACTIONS(1070), 1, - anon_sym_DQUOTE, - ACTIONS(1076), 1, - sym__decimal, - ACTIONS(1078), 1, - sym__name, - ACTIONS(1080), 1, - sym__upname, - ACTIONS(1226), 1, - anon_sym_echo, - ACTIONS(1228), 1, - sym_float, - STATE(27), 1, - sym_identifier, - STATE(76), 1, - sym_tuple, - STATE(78), 1, - sym_anonymous_function, - STATE(1608), 1, - sym__maybe_function_expression, - STATE(1809), 1, - sym__maybe_record_expression, - STATE(1876), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(14), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(69), 2, - sym_record, - sym_record_update, - ACTIONS(1074), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(26), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(111), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [28289] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1230), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(509), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [28397] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1232), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(954), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [28505] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1048), 1, - anon_sym_LBRACE, - ACTIONS(1050), 1, - anon_sym_POUND, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT_LT, - ACTIONS(1056), 1, - anon_sym_DASH, - ACTIONS(1058), 1, - anon_sym_fn, - ACTIONS(1060), 1, - anon_sym_todo, - ACTIONS(1062), 1, - anon_sym_panic, - ACTIONS(1066), 1, - anon_sym_case, - ACTIONS(1068), 1, - anon_sym_BANG, - ACTIONS(1070), 1, - anon_sym_DQUOTE, - ACTIONS(1076), 1, - sym__decimal, - ACTIONS(1078), 1, - sym__name, - ACTIONS(1080), 1, - sym__upname, - ACTIONS(1226), 1, - anon_sym_echo, - ACTIONS(1234), 1, - sym_float, - STATE(27), 1, - sym_identifier, - STATE(76), 1, - sym_tuple, - STATE(78), 1, - sym_anonymous_function, - STATE(1608), 1, - sym__maybe_function_expression, - STATE(1809), 1, - sym__maybe_record_expression, - STATE(1876), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(14), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(69), 2, - sym_record, - sym_record_update, - ACTIONS(1074), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(26), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(110), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [28613] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1236), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(991), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [28721] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1238), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1509), 1, - sym_expression_bit_string_segment, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [28833] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, - anon_sym_case, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1154), 1, - anon_sym_fn, - ACTIONS(1240), 1, - sym_float, - STATE(74), 1, - sym_identifier, - STATE(91), 1, - sym_anonymous_function, - STATE(92), 1, - sym_tuple, - STATE(1652), 1, - sym__maybe_function_expression, - STATE(1862), 1, - sym__maybe_record_expression, - STATE(1863), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(39), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(93), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(81), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(143), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [28941] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - ACTIONS(191), 1, - anon_sym_fn, - ACTIONS(193), 1, - anon_sym_todo, - ACTIONS(195), 1, - anon_sym_panic, - ACTIONS(197), 1, - anon_sym_echo, - ACTIONS(199), 1, - anon_sym_case, - ACTIONS(1092), 1, - anon_sym_POUND, - ACTIONS(1094), 1, - anon_sym_LBRACK, - ACTIONS(1096), 1, - anon_sym_LT_LT, - ACTIONS(1098), 1, - anon_sym_DASH, - ACTIONS(1102), 1, - anon_sym_BANG, - ACTIONS(1104), 1, - anon_sym_DQUOTE, - ACTIONS(1110), 1, - sym__decimal, - ACTIONS(1112), 1, - sym__name, - ACTIONS(1114), 1, - sym__upname, - ACTIONS(1242), 1, - sym_float, - STATE(563), 1, - sym_identifier, - STATE(585), 1, - sym_tuple, - STATE(588), 1, - sym_anonymous_function, - STATE(1678), 1, - sym__maybe_function_expression, - STATE(1782), 1, - sym__maybe_tuple_expression, - STATE(1831), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(555), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(584), 2, - sym_record, - sym_record_update, - ACTIONS(1108), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(562), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(609), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [29049] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - ACTIONS(191), 1, - anon_sym_fn, - ACTIONS(193), 1, - anon_sym_todo, - ACTIONS(195), 1, - anon_sym_panic, - ACTIONS(197), 1, - anon_sym_echo, - ACTIONS(199), 1, - anon_sym_case, - ACTIONS(1092), 1, - anon_sym_POUND, - ACTIONS(1094), 1, - anon_sym_LBRACK, - ACTIONS(1096), 1, - anon_sym_LT_LT, - ACTIONS(1098), 1, - anon_sym_DASH, - ACTIONS(1102), 1, - anon_sym_BANG, - ACTIONS(1104), 1, - anon_sym_DQUOTE, - ACTIONS(1110), 1, - sym__decimal, - ACTIONS(1112), 1, - sym__name, - ACTIONS(1114), 1, - sym__upname, - ACTIONS(1244), 1, - sym_float, - STATE(563), 1, - sym_identifier, - STATE(585), 1, - sym_tuple, - STATE(588), 1, - sym_anonymous_function, - STATE(1678), 1, - sym__maybe_function_expression, - STATE(1782), 1, - sym__maybe_tuple_expression, - STATE(1831), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(555), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(584), 2, - sym_record, - sym_record_update, - ACTIONS(1108), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(562), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(608), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [29157] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - ACTIONS(191), 1, - anon_sym_fn, - ACTIONS(193), 1, - anon_sym_todo, - ACTIONS(195), 1, - anon_sym_panic, - ACTIONS(197), 1, - anon_sym_echo, - ACTIONS(199), 1, - anon_sym_case, - ACTIONS(1092), 1, - anon_sym_POUND, - ACTIONS(1094), 1, - anon_sym_LBRACK, - ACTIONS(1096), 1, - anon_sym_LT_LT, - ACTIONS(1098), 1, - anon_sym_DASH, - ACTIONS(1102), 1, - anon_sym_BANG, - ACTIONS(1104), 1, - anon_sym_DQUOTE, - ACTIONS(1110), 1, - sym__decimal, - ACTIONS(1112), 1, - sym__name, - ACTIONS(1114), 1, - sym__upname, - ACTIONS(1246), 1, - sym_float, - STATE(563), 1, - sym_identifier, - STATE(585), 1, - sym_tuple, - STATE(588), 1, - sym_anonymous_function, - STATE(1678), 1, - sym__maybe_function_expression, - STATE(1782), 1, - sym__maybe_tuple_expression, - STATE(1831), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(555), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(584), 2, - sym_record, - sym_record_update, - ACTIONS(1108), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(562), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(602), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [29265] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - ACTIONS(191), 1, - anon_sym_fn, - ACTIONS(193), 1, - anon_sym_todo, - ACTIONS(195), 1, - anon_sym_panic, - ACTIONS(197), 1, - anon_sym_echo, - ACTIONS(199), 1, - anon_sym_case, - ACTIONS(1092), 1, - anon_sym_POUND, - ACTIONS(1094), 1, - anon_sym_LBRACK, - ACTIONS(1096), 1, - anon_sym_LT_LT, - ACTIONS(1098), 1, - anon_sym_DASH, - ACTIONS(1102), 1, - anon_sym_BANG, - ACTIONS(1104), 1, - anon_sym_DQUOTE, - ACTIONS(1110), 1, - sym__decimal, - ACTIONS(1112), 1, - sym__name, - ACTIONS(1114), 1, - sym__upname, - ACTIONS(1248), 1, - sym_float, - STATE(563), 1, - sym_identifier, - STATE(585), 1, - sym_tuple, - STATE(588), 1, - sym_anonymous_function, - STATE(1678), 1, - sym__maybe_function_expression, - STATE(1782), 1, - sym__maybe_tuple_expression, - STATE(1831), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(555), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(584), 2, - sym_record, - sym_record_update, - ACTIONS(1108), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(562), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(591), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [29373] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, - anon_sym_case, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1154), 1, - anon_sym_fn, - ACTIONS(1250), 1, - sym_float, - STATE(74), 1, - sym_identifier, - STATE(91), 1, - sym_anonymous_function, - STATE(92), 1, - sym_tuple, - STATE(1652), 1, - sym__maybe_function_expression, - STATE(1862), 1, - sym__maybe_record_expression, - STATE(1863), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(39), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(93), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(81), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(152), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [29481] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1252), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(992), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [29589] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - ACTIONS(191), 1, - anon_sym_fn, - ACTIONS(193), 1, - anon_sym_todo, - ACTIONS(195), 1, - anon_sym_panic, - ACTIONS(197), 1, - anon_sym_echo, - ACTIONS(199), 1, - anon_sym_case, - ACTIONS(1092), 1, - anon_sym_POUND, - ACTIONS(1094), 1, - anon_sym_LBRACK, - ACTIONS(1096), 1, - anon_sym_LT_LT, - ACTIONS(1098), 1, - anon_sym_DASH, - ACTIONS(1102), 1, - anon_sym_BANG, - ACTIONS(1104), 1, - anon_sym_DQUOTE, - ACTIONS(1110), 1, - sym__decimal, - ACTIONS(1112), 1, - sym__name, - ACTIONS(1114), 1, - sym__upname, - ACTIONS(1254), 1, - sym_float, - STATE(563), 1, - sym_identifier, - STATE(585), 1, - sym_tuple, - STATE(588), 1, - sym_anonymous_function, - STATE(1678), 1, - sym__maybe_function_expression, - STATE(1782), 1, - sym__maybe_tuple_expression, - STATE(1831), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(555), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(584), 2, - sym_record, - sym_record_update, - ACTIONS(1108), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(562), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(598), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [29697] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(716), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(714), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [29755] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1256), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(997), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [29863] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - ACTIONS(191), 1, - anon_sym_fn, - ACTIONS(193), 1, - anon_sym_todo, - ACTIONS(195), 1, - anon_sym_panic, - ACTIONS(197), 1, - anon_sym_echo, - ACTIONS(199), 1, - anon_sym_case, - ACTIONS(1092), 1, - anon_sym_POUND, - ACTIONS(1094), 1, - anon_sym_LBRACK, - ACTIONS(1096), 1, - anon_sym_LT_LT, - ACTIONS(1098), 1, - anon_sym_DASH, - ACTIONS(1102), 1, - anon_sym_BANG, - ACTIONS(1104), 1, - anon_sym_DQUOTE, - ACTIONS(1110), 1, - sym__decimal, - ACTIONS(1112), 1, - sym__name, - ACTIONS(1114), 1, - sym__upname, - ACTIONS(1258), 1, - sym_float, - STATE(563), 1, - sym_identifier, - STATE(585), 1, - sym_tuple, - STATE(588), 1, - sym_anonymous_function, - STATE(1678), 1, - sym__maybe_function_expression, - STATE(1782), 1, - sym__maybe_tuple_expression, - STATE(1831), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(555), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(584), 2, - sym_record, - sym_record_update, - ACTIONS(1108), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(562), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(637), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [29971] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - ACTIONS(191), 1, - anon_sym_fn, - ACTIONS(193), 1, - anon_sym_todo, - ACTIONS(195), 1, - anon_sym_panic, - ACTIONS(197), 1, - anon_sym_echo, - ACTIONS(199), 1, - anon_sym_case, - ACTIONS(1092), 1, - anon_sym_POUND, - ACTIONS(1094), 1, - anon_sym_LBRACK, - ACTIONS(1096), 1, - anon_sym_LT_LT, - ACTIONS(1098), 1, - anon_sym_DASH, - ACTIONS(1102), 1, - anon_sym_BANG, - ACTIONS(1104), 1, - anon_sym_DQUOTE, - ACTIONS(1110), 1, - sym__decimal, - ACTIONS(1112), 1, - sym__name, - ACTIONS(1114), 1, - sym__upname, - ACTIONS(1260), 1, - sym_float, - STATE(563), 1, - sym_identifier, - STATE(585), 1, - sym_tuple, - STATE(588), 1, - sym_anonymous_function, - STATE(1678), 1, - sym__maybe_function_expression, - STATE(1782), 1, - sym__maybe_tuple_expression, - STATE(1831), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(555), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(584), 2, - sym_record, - sym_record_update, - ACTIONS(1108), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(562), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(635), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [30079] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, - anon_sym_case, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1154), 1, - anon_sym_fn, - ACTIONS(1262), 1, - sym_float, - STATE(74), 1, - sym_identifier, - STATE(91), 1, - sym_anonymous_function, - STATE(92), 1, - sym_tuple, - STATE(1652), 1, - sym__maybe_function_expression, - STATE(1862), 1, - sym__maybe_record_expression, - STATE(1863), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(39), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(93), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(81), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(160), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [30187] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1048), 1, - anon_sym_LBRACE, - ACTIONS(1050), 1, - anon_sym_POUND, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT_LT, - ACTIONS(1056), 1, - anon_sym_DASH, - ACTIONS(1058), 1, - anon_sym_fn, - ACTIONS(1060), 1, - anon_sym_todo, - ACTIONS(1062), 1, - anon_sym_panic, - ACTIONS(1066), 1, - anon_sym_case, - ACTIONS(1068), 1, - anon_sym_BANG, - ACTIONS(1070), 1, - anon_sym_DQUOTE, - ACTIONS(1076), 1, - sym__decimal, - ACTIONS(1078), 1, - sym__name, - ACTIONS(1080), 1, - sym__upname, - ACTIONS(1226), 1, - anon_sym_echo, - ACTIONS(1264), 1, - sym_float, - STATE(27), 1, - sym_identifier, - STATE(76), 1, - sym_tuple, - STATE(78), 1, - sym_anonymous_function, - STATE(1608), 1, - sym__maybe_function_expression, - STATE(1809), 1, - sym__maybe_record_expression, - STATE(1876), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(14), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(69), 2, - sym_record, - sym_record_update, - ACTIONS(1074), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(26), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(97), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [30295] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, - anon_sym_case, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1154), 1, - anon_sym_fn, - ACTIONS(1266), 1, - sym_float, - STATE(74), 1, - sym_identifier, - STATE(91), 1, - sym_anonymous_function, - STATE(92), 1, - sym_tuple, - STATE(1652), 1, - sym__maybe_function_expression, - STATE(1862), 1, - sym__maybe_record_expression, - STATE(1863), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(39), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(93), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(81), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(156), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [30403] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, - anon_sym_case, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1154), 1, - anon_sym_fn, - ACTIONS(1268), 1, - sym_float, - STATE(74), 1, - sym_identifier, - STATE(91), 1, - sym_anonymous_function, - STATE(92), 1, - sym_tuple, - STATE(1652), 1, - sym__maybe_function_expression, - STATE(1862), 1, - sym__maybe_record_expression, - STATE(1863), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(39), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(93), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(81), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(155), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [30511] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, - anon_sym_case, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1154), 1, - anon_sym_fn, - ACTIONS(1270), 1, - sym_float, - STATE(74), 1, - sym_identifier, - STATE(91), 1, - sym_anonymous_function, - STATE(92), 1, - sym_tuple, - STATE(1652), 1, - sym__maybe_function_expression, - STATE(1862), 1, - sym__maybe_record_expression, - STATE(1863), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(39), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(93), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(81), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(154), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [30619] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, - anon_sym_case, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1154), 1, - anon_sym_fn, - ACTIONS(1272), 1, - sym_float, - STATE(74), 1, - sym_identifier, - STATE(91), 1, - sym_anonymous_function, - STATE(92), 1, - sym_tuple, - STATE(1652), 1, - sym__maybe_function_expression, - STATE(1862), 1, - sym__maybe_record_expression, - STATE(1863), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(39), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(93), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(81), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(150), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [30727] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, - anon_sym_case, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1154), 1, - anon_sym_fn, - ACTIONS(1274), 1, - sym_float, - STATE(74), 1, - sym_identifier, - STATE(91), 1, - sym_anonymous_function, - STATE(92), 1, - sym_tuple, - STATE(1652), 1, - sym__maybe_function_expression, - STATE(1862), 1, - sym__maybe_record_expression, - STATE(1863), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(39), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(93), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(81), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(132), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [30835] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1276), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(510), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [30943] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1278), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(527), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [31051] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1280), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1024), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [31159] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1282), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1727), 1, - sym_expression_bit_string_segment, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [31271] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(1224), 1, - sym_float, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(915), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [31379] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1287), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(526), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [31487] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(203), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - anon_sym_POUND, - ACTIONS(207), 1, - anon_sym_LBRACK, - ACTIONS(209), 1, - anon_sym_LT_LT, - ACTIONS(211), 1, - anon_sym_fn, - ACTIONS(213), 1, - anon_sym_todo, - ACTIONS(215), 1, - anon_sym_panic, - ACTIONS(217), 1, - anon_sym_echo, - ACTIONS(219), 1, - anon_sym_case, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(225), 1, - sym_float, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(231), 1, - sym__name, - ACTIONS(233), 1, - sym__upname, - ACTIONS(968), 1, - anon_sym_DASH, - ACTIONS(972), 1, - anon_sym_BANG, - STATE(862), 1, - sym_identifier, - STATE(933), 1, - sym_tuple, - STATE(935), 1, - sym_anonymous_function, - STATE(1718), 1, - sym__maybe_function_expression, - STATE(1760), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(856), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(931), 2, - sym_record, - sym_record_update, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(873), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(961), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [31595] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1289), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1727), 1, - sym_expression_bit_string_segment, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [31707] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(203), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - anon_sym_POUND, - ACTIONS(207), 1, - anon_sym_LBRACK, - ACTIONS(209), 1, - anon_sym_LT_LT, - ACTIONS(211), 1, - anon_sym_fn, - ACTIONS(213), 1, - anon_sym_todo, - ACTIONS(215), 1, - anon_sym_panic, - ACTIONS(217), 1, - anon_sym_echo, - ACTIONS(219), 1, - anon_sym_case, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(231), 1, - sym__name, - ACTIONS(233), 1, - sym__upname, - ACTIONS(968), 1, - anon_sym_DASH, - ACTIONS(972), 1, - anon_sym_BANG, - ACTIONS(1291), 1, - sym_float, - STATE(862), 1, - sym_identifier, - STATE(933), 1, - sym_tuple, - STATE(935), 1, - sym_anonymous_function, - STATE(1718), 1, - sym__maybe_function_expression, - STATE(1760), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(856), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(931), 2, - sym_record, - sym_record_update, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(873), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(993), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [31815] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(203), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - anon_sym_POUND, - ACTIONS(207), 1, - anon_sym_LBRACK, - ACTIONS(209), 1, - anon_sym_LT_LT, - ACTIONS(211), 1, - anon_sym_fn, - ACTIONS(213), 1, - anon_sym_todo, - ACTIONS(215), 1, - anon_sym_panic, - ACTIONS(217), 1, - anon_sym_echo, - ACTIONS(219), 1, - anon_sym_case, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(231), 1, - sym__name, - ACTIONS(233), 1, - sym__upname, - ACTIONS(968), 1, - anon_sym_DASH, - ACTIONS(972), 1, - anon_sym_BANG, - ACTIONS(1293), 1, - sym_float, - STATE(862), 1, - sym_identifier, - STATE(933), 1, - sym_tuple, - STATE(935), 1, - sym_anonymous_function, - STATE(1718), 1, - sym__maybe_function_expression, - STATE(1760), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(856), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(931), 2, - sym_record, - sym_record_update, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(873), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(950), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [31923] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, - anon_sym_case, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1154), 1, - anon_sym_fn, - ACTIONS(1295), 1, - sym_float, - STATE(74), 1, - sym_identifier, - STATE(91), 1, - sym_anonymous_function, - STATE(92), 1, - sym_tuple, - STATE(1652), 1, - sym__maybe_function_expression, - STATE(1862), 1, - sym__maybe_record_expression, - STATE(1863), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(39), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(93), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(81), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(131), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [32031] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1297), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1006), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [32139] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1299), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1018), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [32247] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(896), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(848), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [32355] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1301), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(995), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [32463] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(1224), 1, - sym_float, - ACTIONS(1303), 1, - anon_sym_LBRACE, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(915), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [32571] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1188), 1, - anon_sym_PIPE_GT, - ACTIONS(1306), 1, - anon_sym_as, - ACTIONS(1308), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1310), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1190), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1184), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1186), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1192), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(726), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(728), 11, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [32651] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1314), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1532), 1, - sym_expression_bit_string_segment, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [32763] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1316), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1009), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [32871] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1318), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1437), 1, - sym_expression_bit_string_segment, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [32983] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1320), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1727), 1, - sym_expression_bit_string_segment, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [33095] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - ACTIONS(191), 1, - anon_sym_fn, - ACTIONS(193), 1, - anon_sym_todo, - ACTIONS(195), 1, - anon_sym_panic, - ACTIONS(197), 1, - anon_sym_echo, - ACTIONS(199), 1, - anon_sym_case, - ACTIONS(1092), 1, - anon_sym_POUND, - ACTIONS(1094), 1, - anon_sym_LBRACK, - ACTIONS(1096), 1, - anon_sym_LT_LT, - ACTIONS(1098), 1, - anon_sym_DASH, - ACTIONS(1102), 1, - anon_sym_BANG, - ACTIONS(1104), 1, - anon_sym_DQUOTE, - ACTIONS(1110), 1, - sym__decimal, - ACTIONS(1112), 1, - sym__name, - ACTIONS(1114), 1, - sym__upname, - ACTIONS(1322), 1, - sym_float, - STATE(563), 1, - sym_identifier, - STATE(585), 1, - sym_tuple, - STATE(588), 1, - sym_anonymous_function, - STATE(1678), 1, - sym__maybe_function_expression, - STATE(1782), 1, - sym__maybe_tuple_expression, - STATE(1831), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(555), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(584), 2, - sym_record, - sym_record_update, - ACTIONS(1108), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(562), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(620), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [33203] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1324), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(975), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [33311] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1326), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(511), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [33419] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1328), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(970), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [33527] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(203), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - anon_sym_POUND, - ACTIONS(207), 1, - anon_sym_LBRACK, - ACTIONS(209), 1, - anon_sym_LT_LT, - ACTIONS(211), 1, - anon_sym_fn, - ACTIONS(213), 1, - anon_sym_todo, - ACTIONS(215), 1, - anon_sym_panic, - ACTIONS(217), 1, - anon_sym_echo, - ACTIONS(219), 1, - anon_sym_case, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(231), 1, - sym__name, - ACTIONS(233), 1, - sym__upname, - ACTIONS(968), 1, - anon_sym_DASH, - ACTIONS(972), 1, - anon_sym_BANG, - ACTIONS(1330), 1, - sym_float, - STATE(862), 1, - sym_identifier, - STATE(933), 1, - sym_tuple, - STATE(935), 1, - sym_anonymous_function, - STATE(1718), 1, - sym__maybe_function_expression, - STATE(1760), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(856), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(931), 2, - sym_record, - sym_record_update, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(873), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(957), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [33635] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1332), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1022), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [33743] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(652), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(650), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [33801] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(203), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - anon_sym_POUND, - ACTIONS(207), 1, - anon_sym_LBRACK, - ACTIONS(209), 1, - anon_sym_LT_LT, - ACTIONS(211), 1, - anon_sym_fn, - ACTIONS(213), 1, - anon_sym_todo, - ACTIONS(215), 1, - anon_sym_panic, - ACTIONS(217), 1, - anon_sym_echo, - ACTIONS(219), 1, - anon_sym_case, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(231), 1, - sym__name, - ACTIONS(233), 1, - sym__upname, - ACTIONS(968), 1, - anon_sym_DASH, - ACTIONS(972), 1, - anon_sym_BANG, - ACTIONS(1334), 1, - sym_float, - STATE(862), 1, - sym_identifier, - STATE(933), 1, - sym_tuple, - STATE(935), 1, - sym_anonymous_function, - STATE(1718), 1, - sym__maybe_function_expression, - STATE(1760), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(856), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(931), 2, - sym_record, - sym_record_update, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(873), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(958), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [33909] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(742), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(740), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [33967] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(203), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - anon_sym_POUND, - ACTIONS(207), 1, - anon_sym_LBRACK, - ACTIONS(209), 1, - anon_sym_LT_LT, - ACTIONS(211), 1, - anon_sym_fn, - ACTIONS(213), 1, - anon_sym_todo, - ACTIONS(215), 1, - anon_sym_panic, - ACTIONS(217), 1, - anon_sym_echo, - ACTIONS(219), 1, - anon_sym_case, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(231), 1, - sym__name, - ACTIONS(233), 1, - sym__upname, - ACTIONS(968), 1, - anon_sym_DASH, - ACTIONS(972), 1, - anon_sym_BANG, - ACTIONS(1336), 1, - sym_float, - STATE(862), 1, - sym_identifier, - STATE(933), 1, - sym_tuple, - STATE(935), 1, - sym_anonymous_function, - STATE(1718), 1, - sym__maybe_function_expression, - STATE(1760), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(856), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(931), 2, - sym_record, - sym_record_update, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(873), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(959), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [34075] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(203), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - anon_sym_POUND, - ACTIONS(207), 1, - anon_sym_LBRACK, - ACTIONS(209), 1, - anon_sym_LT_LT, - ACTIONS(211), 1, - anon_sym_fn, - ACTIONS(213), 1, - anon_sym_todo, - ACTIONS(215), 1, - anon_sym_panic, - ACTIONS(217), 1, - anon_sym_echo, - ACTIONS(219), 1, - anon_sym_case, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(231), 1, - sym__name, - ACTIONS(233), 1, - sym__upname, - ACTIONS(968), 1, - anon_sym_DASH, - ACTIONS(972), 1, - anon_sym_BANG, - ACTIONS(1338), 1, - sym_float, - STATE(862), 1, - sym_identifier, - STATE(933), 1, - sym_tuple, - STATE(935), 1, - sym_anonymous_function, - STATE(1718), 1, - sym__maybe_function_expression, - STATE(1760), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(856), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(931), 2, - sym_record, - sym_record_update, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(873), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(966), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [34183] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(203), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - anon_sym_POUND, - ACTIONS(207), 1, - anon_sym_LBRACK, - ACTIONS(209), 1, - anon_sym_LT_LT, - ACTIONS(211), 1, - anon_sym_fn, - ACTIONS(213), 1, - anon_sym_todo, - ACTIONS(215), 1, - anon_sym_panic, - ACTIONS(217), 1, - anon_sym_echo, - ACTIONS(219), 1, - anon_sym_case, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(231), 1, - sym__name, - ACTIONS(233), 1, - sym__upname, - ACTIONS(968), 1, - anon_sym_DASH, - ACTIONS(972), 1, - anon_sym_BANG, - ACTIONS(1340), 1, - sym_float, - STATE(862), 1, - sym_identifier, - STATE(933), 1, - sym_tuple, - STATE(935), 1, - sym_anonymous_function, - STATE(1718), 1, - sym__maybe_function_expression, - STATE(1760), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(856), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(931), 2, - sym_record, - sym_record_update, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(873), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(968), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [34291] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(203), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - anon_sym_POUND, - ACTIONS(207), 1, - anon_sym_LBRACK, - ACTIONS(209), 1, - anon_sym_LT_LT, - ACTIONS(211), 1, - anon_sym_fn, - ACTIONS(213), 1, - anon_sym_todo, - ACTIONS(215), 1, - anon_sym_panic, - ACTIONS(217), 1, - anon_sym_echo, - ACTIONS(219), 1, - anon_sym_case, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(231), 1, - sym__name, - ACTIONS(233), 1, - sym__upname, - ACTIONS(968), 1, - anon_sym_DASH, - ACTIONS(972), 1, - anon_sym_BANG, - ACTIONS(1342), 1, - sym_float, - STATE(862), 1, - sym_identifier, - STATE(933), 1, - sym_tuple, - STATE(935), 1, - sym_anonymous_function, - STATE(1718), 1, - sym__maybe_function_expression, - STATE(1760), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(856), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(931), 2, - sym_record, - sym_record_update, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(873), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(969), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [34399] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(1344), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(944), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [34507] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(758), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(756), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [34565] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(762), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(760), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [34623] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(772), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(770), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [34681] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1346), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1564), 1, - sym_expression_bit_string_segment, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [34793] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1348), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1727), 1, - sym_expression_bit_string_segment, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [34905] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(1350), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(941), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [35013] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, - anon_sym_case, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1154), 1, - anon_sym_fn, - ACTIONS(1352), 1, - sym_float, - STATE(74), 1, - sym_identifier, - STATE(91), 1, - sym_anonymous_function, - STATE(92), 1, - sym_tuple, - STATE(1652), 1, - sym__maybe_function_expression, - STATE(1862), 1, - sym__maybe_record_expression, - STATE(1863), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(39), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(93), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(81), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(130), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [35121] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - ACTIONS(191), 1, - anon_sym_fn, - ACTIONS(193), 1, - anon_sym_todo, - ACTIONS(195), 1, - anon_sym_panic, - ACTIONS(197), 1, - anon_sym_echo, - ACTIONS(199), 1, - anon_sym_case, - ACTIONS(1092), 1, - anon_sym_POUND, - ACTIONS(1094), 1, - anon_sym_LBRACK, - ACTIONS(1096), 1, - anon_sym_LT_LT, - ACTIONS(1098), 1, - anon_sym_DASH, - ACTIONS(1102), 1, - anon_sym_BANG, - ACTIONS(1104), 1, - anon_sym_DQUOTE, - ACTIONS(1110), 1, - sym__decimal, - ACTIONS(1112), 1, - sym__name, - ACTIONS(1114), 1, - sym__upname, - ACTIONS(1354), 1, - sym_float, - STATE(563), 1, - sym_identifier, - STATE(585), 1, - sym_tuple, - STATE(588), 1, - sym_anonymous_function, - STATE(1678), 1, - sym__maybe_function_expression, - STATE(1782), 1, - sym__maybe_tuple_expression, - STATE(1831), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(555), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(584), 2, - sym_record, - sym_record_update, - ACTIONS(1108), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(562), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(629), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [35229] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(734), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(732), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [35287] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(696), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(694), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [35345] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(720), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(718), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [35403] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(684), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(682), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [35461] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, - anon_sym_case, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1154), 1, - anon_sym_fn, - ACTIONS(1356), 1, - sym_float, - STATE(74), 1, - sym_identifier, - STATE(91), 1, - sym_anonymous_function, - STATE(92), 1, - sym_tuple, - STATE(1652), 1, - sym__maybe_function_expression, - STATE(1862), 1, - sym__maybe_record_expression, - STATE(1863), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(39), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(93), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(81), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(133), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [35569] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1048), 1, - anon_sym_LBRACE, - ACTIONS(1050), 1, - anon_sym_POUND, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT_LT, - ACTIONS(1056), 1, - anon_sym_DASH, - ACTIONS(1058), 1, - anon_sym_fn, - ACTIONS(1060), 1, - anon_sym_todo, - ACTIONS(1062), 1, - anon_sym_panic, - ACTIONS(1066), 1, - anon_sym_case, - ACTIONS(1068), 1, - anon_sym_BANG, - ACTIONS(1070), 1, - anon_sym_DQUOTE, - ACTIONS(1076), 1, - sym__decimal, - ACTIONS(1078), 1, - sym__name, - ACTIONS(1080), 1, - sym__upname, - ACTIONS(1226), 1, - anon_sym_echo, - ACTIONS(1358), 1, - sym_float, - STATE(27), 1, - sym_identifier, - STATE(76), 1, - sym_tuple, - STATE(78), 1, - sym_anonymous_function, - STATE(1608), 1, - sym__maybe_function_expression, - STATE(1809), 1, - sym__maybe_record_expression, - STATE(1876), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(14), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(69), 2, - sym_record, - sym_record_update, - ACTIONS(1074), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(26), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(100), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [35677] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1360), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1727), 1, - sym_expression_bit_string_segment, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [35789] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1048), 1, - anon_sym_LBRACE, - ACTIONS(1050), 1, - anon_sym_POUND, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT_LT, - ACTIONS(1056), 1, - anon_sym_DASH, - ACTIONS(1058), 1, - anon_sym_fn, - ACTIONS(1060), 1, - anon_sym_todo, - ACTIONS(1062), 1, - anon_sym_panic, - ACTIONS(1066), 1, - anon_sym_case, - ACTIONS(1068), 1, - anon_sym_BANG, - ACTIONS(1070), 1, - anon_sym_DQUOTE, - ACTIONS(1076), 1, - sym__decimal, - ACTIONS(1078), 1, - sym__name, - ACTIONS(1080), 1, - sym__upname, - ACTIONS(1226), 1, - anon_sym_echo, - ACTIONS(1362), 1, - sym_float, - STATE(27), 1, - sym_identifier, - STATE(76), 1, - sym_tuple, - STATE(78), 1, - sym_anonymous_function, - STATE(1608), 1, - sym__maybe_function_expression, - STATE(1809), 1, - sym__maybe_record_expression, - STATE(1876), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(14), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(69), 2, - sym_record, - sym_record_update, - ACTIONS(1074), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(26), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(104), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [35897] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, - anon_sym_case, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1154), 1, - anon_sym_fn, - ACTIONS(1364), 1, - sym_float, - STATE(74), 1, - sym_identifier, - STATE(91), 1, - sym_anonymous_function, - STATE(92), 1, - sym_tuple, - STATE(1652), 1, - sym__maybe_function_expression, - STATE(1862), 1, - sym__maybe_record_expression, - STATE(1863), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(39), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(93), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(81), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(145), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [36005] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1366), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1727), 1, - sym_expression_bit_string_segment, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [36117] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(712), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(710), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [36175] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1190), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1192), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(712), 16, - anon_sym_as, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(710), 20, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [36241] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(1368), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(939), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [36349] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1188), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1190), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1192), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(712), 16, - anon_sym_as, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(710), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [36417] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1370), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1727), 1, - sym_expression_bit_string_segment, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [36529] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1188), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1190), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1184), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1186), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1192), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(712), 12, - anon_sym_as, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(710), 13, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [36603] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1188), 1, - anon_sym_PIPE_GT, - ACTIONS(1310), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1190), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1184), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1186), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1192), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(712), 12, - anon_sym_as, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [36679] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1192), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(712), 18, - anon_sym_as, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(710), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [36741] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(712), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(710), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [36799] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1372), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(518), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [36907] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1188), 1, - anon_sym_PIPE_GT, - ACTIONS(1308), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1310), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1190), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1184), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1186), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1192), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(658), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(660), 12, - anon_sym_as, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [36985] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1188), 1, - anon_sym_PIPE_GT, - ACTIONS(1308), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1310), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1190), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1184), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1186), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1192), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(722), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(724), 12, - anon_sym_as, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [37063] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1374), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1727), 1, - sym_expression_bit_string_segment, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [37175] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(754), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(752), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [37233] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(1376), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(938), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [37341] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(1378), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(937), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [37449] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(738), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(736), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [37507] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1048), 1, - anon_sym_LBRACE, - ACTIONS(1050), 1, - anon_sym_POUND, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT_LT, - ACTIONS(1056), 1, - anon_sym_DASH, - ACTIONS(1058), 1, - anon_sym_fn, - ACTIONS(1060), 1, - anon_sym_todo, - ACTIONS(1062), 1, - anon_sym_panic, - ACTIONS(1066), 1, - anon_sym_case, - ACTIONS(1068), 1, - anon_sym_BANG, - ACTIONS(1070), 1, - anon_sym_DQUOTE, - ACTIONS(1076), 1, - sym__decimal, - ACTIONS(1078), 1, - sym__name, - ACTIONS(1080), 1, - sym__upname, - ACTIONS(1226), 1, - anon_sym_echo, - ACTIONS(1380), 1, - sym_float, - STATE(27), 1, - sym_identifier, - STATE(76), 1, - sym_tuple, - STATE(78), 1, - sym_anonymous_function, - STATE(1608), 1, - sym__maybe_function_expression, - STATE(1809), 1, - sym__maybe_record_expression, - STATE(1876), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(14), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(69), 2, - sym_record, - sym_record_update, - ACTIONS(1074), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(26), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(127), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [37615] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1382), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1411), 1, - sym_expression_bit_string_segment, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [37727] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1384), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(525), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [37835] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1012), 1, - anon_sym_LBRACE, - ACTIONS(1014), 1, - anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_LBRACK, - ACTIONS(1018), 1, - anon_sym_LT_LT, - ACTIONS(1020), 1, - anon_sym_DASH, - ACTIONS(1022), 1, - anon_sym_fn, - ACTIONS(1024), 1, - anon_sym_todo, - ACTIONS(1026), 1, - anon_sym_panic, - ACTIONS(1030), 1, - anon_sym_case, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1034), 1, - anon_sym_DQUOTE, - ACTIONS(1040), 1, - sym__decimal, - ACTIONS(1042), 1, - sym__name, - ACTIONS(1044), 1, - sym__upname, - ACTIONS(1386), 1, - anon_sym_echo, - ACTIONS(1388), 1, - sym_float, - STATE(249), 1, - sym_identifier, - STATE(311), 1, - sym_anonymous_function, - STATE(312), 1, - sym_tuple, - STATE(1638), 1, - sym__maybe_function_expression, - STATE(1820), 1, - sym__maybe_record_expression, - STATE(1825), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(222), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(319), 2, - sym_record, - sym_record_update, - ACTIONS(1038), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(248), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(391), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [37943] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1390), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1001), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [38051] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, - anon_sym_case, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1154), 1, - anon_sym_fn, - ACTIONS(1392), 1, - sym_float, - STATE(74), 1, - sym_identifier, - STATE(91), 1, - sym_anonymous_function, - STATE(92), 1, - sym_tuple, - STATE(1652), 1, - sym__maybe_function_expression, - STATE(1862), 1, - sym__maybe_record_expression, - STATE(1863), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(39), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(93), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(81), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(148), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [38159] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1012), 1, - anon_sym_LBRACE, - ACTIONS(1014), 1, - anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_LBRACK, - ACTIONS(1018), 1, - anon_sym_LT_LT, - ACTIONS(1020), 1, - anon_sym_DASH, - ACTIONS(1022), 1, - anon_sym_fn, - ACTIONS(1024), 1, - anon_sym_todo, - ACTIONS(1026), 1, - anon_sym_panic, - ACTIONS(1030), 1, - anon_sym_case, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1034), 1, - anon_sym_DQUOTE, - ACTIONS(1040), 1, - sym__decimal, - ACTIONS(1042), 1, - sym__name, - ACTIONS(1044), 1, - sym__upname, - ACTIONS(1386), 1, - anon_sym_echo, - ACTIONS(1394), 1, - sym_float, - STATE(249), 1, - sym_identifier, - STATE(311), 1, - sym_anonymous_function, - STATE(312), 1, - sym_tuple, - STATE(1638), 1, - sym__maybe_function_expression, - STATE(1820), 1, - sym__maybe_record_expression, - STATE(1825), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(222), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(319), 2, - sym_record, - sym_record_update, - ACTIONS(1038), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(248), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(431), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [38267] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1048), 1, - anon_sym_LBRACE, - ACTIONS(1050), 1, - anon_sym_POUND, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT_LT, - ACTIONS(1056), 1, - anon_sym_DASH, - ACTIONS(1058), 1, - anon_sym_fn, - ACTIONS(1060), 1, - anon_sym_todo, - ACTIONS(1062), 1, - anon_sym_panic, - ACTIONS(1066), 1, - anon_sym_case, - ACTIONS(1068), 1, - anon_sym_BANG, - ACTIONS(1070), 1, - anon_sym_DQUOTE, - ACTIONS(1076), 1, - sym__decimal, - ACTIONS(1078), 1, - sym__name, - ACTIONS(1080), 1, - sym__upname, - ACTIONS(1226), 1, - anon_sym_echo, - ACTIONS(1396), 1, - sym_float, - STATE(27), 1, - sym_identifier, - STATE(76), 1, - sym_tuple, - STATE(78), 1, - sym_anonymous_function, - STATE(1608), 1, - sym__maybe_function_expression, - STATE(1809), 1, - sym__maybe_record_expression, - STATE(1876), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(14), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(69), 2, - sym_record, - sym_record_update, - ACTIONS(1074), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(26), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(126), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [38375] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - ACTIONS(191), 1, - anon_sym_fn, - ACTIONS(193), 1, - anon_sym_todo, - ACTIONS(195), 1, - anon_sym_panic, - ACTIONS(197), 1, - anon_sym_echo, - ACTIONS(199), 1, - anon_sym_case, - ACTIONS(1092), 1, - anon_sym_POUND, - ACTIONS(1094), 1, - anon_sym_LBRACK, - ACTIONS(1096), 1, - anon_sym_LT_LT, - ACTIONS(1098), 1, - anon_sym_DASH, - ACTIONS(1102), 1, - anon_sym_BANG, - ACTIONS(1104), 1, - anon_sym_DQUOTE, - ACTIONS(1110), 1, - sym__decimal, - ACTIONS(1112), 1, - sym__name, - ACTIONS(1114), 1, - sym__upname, - ACTIONS(1398), 1, - sym_float, - STATE(563), 1, - sym_identifier, - STATE(585), 1, - sym_tuple, - STATE(588), 1, - sym_anonymous_function, - STATE(1678), 1, - sym__maybe_function_expression, - STATE(1782), 1, - sym__maybe_tuple_expression, - STATE(1831), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(555), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(584), 2, - sym_record, - sym_record_update, - ACTIONS(1108), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(562), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(601), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [38483] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1012), 1, - anon_sym_LBRACE, - ACTIONS(1014), 1, - anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_LBRACK, - ACTIONS(1018), 1, - anon_sym_LT_LT, - ACTIONS(1020), 1, - anon_sym_DASH, - ACTIONS(1022), 1, - anon_sym_fn, - ACTIONS(1024), 1, - anon_sym_todo, - ACTIONS(1026), 1, - anon_sym_panic, - ACTIONS(1030), 1, - anon_sym_case, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1034), 1, - anon_sym_DQUOTE, - ACTIONS(1040), 1, - sym__decimal, - ACTIONS(1042), 1, - sym__name, - ACTIONS(1044), 1, - sym__upname, - ACTIONS(1386), 1, - anon_sym_echo, - ACTIONS(1400), 1, - sym_float, - STATE(249), 1, - sym_identifier, - STATE(311), 1, - sym_anonymous_function, - STATE(312), 1, - sym_tuple, - STATE(1638), 1, - sym__maybe_function_expression, - STATE(1820), 1, - sym__maybe_record_expression, - STATE(1825), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(222), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(319), 2, - sym_record, - sym_record_update, - ACTIONS(1038), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(248), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(336), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [38591] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1012), 1, - anon_sym_LBRACE, - ACTIONS(1014), 1, - anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_LBRACK, - ACTIONS(1018), 1, - anon_sym_LT_LT, - ACTIONS(1020), 1, - anon_sym_DASH, - ACTIONS(1022), 1, - anon_sym_fn, - ACTIONS(1024), 1, - anon_sym_todo, - ACTIONS(1026), 1, - anon_sym_panic, - ACTIONS(1030), 1, - anon_sym_case, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1034), 1, - anon_sym_DQUOTE, - ACTIONS(1040), 1, - sym__decimal, - ACTIONS(1042), 1, - sym__name, - ACTIONS(1044), 1, - sym__upname, - ACTIONS(1386), 1, - anon_sym_echo, - ACTIONS(1402), 1, - sym_float, - STATE(249), 1, - sym_identifier, - STATE(311), 1, - sym_anonymous_function, - STATE(312), 1, - sym_tuple, - STATE(1638), 1, - sym__maybe_function_expression, - STATE(1820), 1, - sym__maybe_record_expression, - STATE(1825), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(222), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(319), 2, - sym_record, - sym_record_update, - ACTIONS(1038), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(248), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(433), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [38699] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1048), 1, - anon_sym_LBRACE, - ACTIONS(1050), 1, - anon_sym_POUND, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT_LT, - ACTIONS(1056), 1, - anon_sym_DASH, - ACTIONS(1058), 1, - anon_sym_fn, - ACTIONS(1060), 1, - anon_sym_todo, - ACTIONS(1062), 1, - anon_sym_panic, - ACTIONS(1066), 1, - anon_sym_case, - ACTIONS(1068), 1, - anon_sym_BANG, - ACTIONS(1070), 1, - anon_sym_DQUOTE, - ACTIONS(1076), 1, - sym__decimal, - ACTIONS(1078), 1, - sym__name, - ACTIONS(1080), 1, - sym__upname, - ACTIONS(1226), 1, - anon_sym_echo, - ACTIONS(1404), 1, - sym_float, - STATE(27), 1, - sym_identifier, - STATE(76), 1, - sym_tuple, - STATE(78), 1, - sym_anonymous_function, - STATE(1608), 1, - sym__maybe_function_expression, - STATE(1809), 1, - sym__maybe_record_expression, - STATE(1876), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(14), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(69), 2, - sym_record, - sym_record_update, - ACTIONS(1074), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(26), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(125), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [38807] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1012), 1, - anon_sym_LBRACE, - ACTIONS(1014), 1, - anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_LBRACK, - ACTIONS(1018), 1, - anon_sym_LT_LT, - ACTIONS(1020), 1, - anon_sym_DASH, - ACTIONS(1022), 1, - anon_sym_fn, - ACTIONS(1024), 1, - anon_sym_todo, - ACTIONS(1026), 1, - anon_sym_panic, - ACTIONS(1030), 1, - anon_sym_case, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1034), 1, - anon_sym_DQUOTE, - ACTIONS(1040), 1, - sym__decimal, - ACTIONS(1042), 1, - sym__name, - ACTIONS(1044), 1, - sym__upname, - ACTIONS(1386), 1, - anon_sym_echo, - ACTIONS(1406), 1, - sym_float, - STATE(249), 1, - sym_identifier, - STATE(311), 1, - sym_anonymous_function, - STATE(312), 1, - sym_tuple, - STATE(1638), 1, - sym__maybe_function_expression, - STATE(1820), 1, - sym__maybe_record_expression, - STATE(1825), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(222), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(319), 2, - sym_record, - sym_record_update, - ACTIONS(1038), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(248), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(434), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [38915] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1012), 1, - anon_sym_LBRACE, - ACTIONS(1014), 1, - anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_LBRACK, - ACTIONS(1018), 1, - anon_sym_LT_LT, - ACTIONS(1020), 1, - anon_sym_DASH, - ACTIONS(1022), 1, - anon_sym_fn, - ACTIONS(1024), 1, - anon_sym_todo, - ACTIONS(1026), 1, - anon_sym_panic, - ACTIONS(1030), 1, - anon_sym_case, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1034), 1, - anon_sym_DQUOTE, - ACTIONS(1040), 1, - sym__decimal, - ACTIONS(1042), 1, - sym__name, - ACTIONS(1044), 1, - sym__upname, - ACTIONS(1386), 1, - anon_sym_echo, - ACTIONS(1408), 1, - sym_float, - STATE(249), 1, - sym_identifier, - STATE(311), 1, - sym_anonymous_function, - STATE(312), 1, - sym_tuple, - STATE(1638), 1, - sym__maybe_function_expression, - STATE(1820), 1, - sym__maybe_record_expression, - STATE(1825), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(222), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(319), 2, - sym_record, - sym_record_update, - ACTIONS(1038), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(248), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(435), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [39023] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1012), 1, - anon_sym_LBRACE, - ACTIONS(1014), 1, - anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_LBRACK, - ACTIONS(1018), 1, - anon_sym_LT_LT, - ACTIONS(1020), 1, - anon_sym_DASH, - ACTIONS(1022), 1, - anon_sym_fn, - ACTIONS(1024), 1, - anon_sym_todo, - ACTIONS(1026), 1, - anon_sym_panic, - ACTIONS(1030), 1, - anon_sym_case, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1034), 1, - anon_sym_DQUOTE, - ACTIONS(1040), 1, - sym__decimal, - ACTIONS(1042), 1, - sym__name, - ACTIONS(1044), 1, - sym__upname, - ACTIONS(1386), 1, - anon_sym_echo, - ACTIONS(1410), 1, - sym_float, - STATE(249), 1, - sym_identifier, - STATE(311), 1, - sym_anonymous_function, - STATE(312), 1, - sym_tuple, - STATE(1638), 1, - sym__maybe_function_expression, - STATE(1820), 1, - sym__maybe_record_expression, - STATE(1825), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(222), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(319), 2, - sym_record, - sym_record_update, - ACTIONS(1038), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(248), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(436), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [39131] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(1412), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(936), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [39239] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(656), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(654), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [39297] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, - anon_sym_case, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1154), 1, - anon_sym_fn, - ACTIONS(1414), 1, - sym_float, - STATE(74), 1, - sym_identifier, - STATE(91), 1, - sym_anonymous_function, - STATE(92), 1, - sym_tuple, - STATE(1652), 1, - sym__maybe_function_expression, - STATE(1862), 1, - sym__maybe_record_expression, - STATE(1863), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(39), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(93), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(81), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(159), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [39405] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1188), 1, - anon_sym_PIPE_GT, - ACTIONS(1308), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1310), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1190), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1184), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1186), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1192), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(702), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(704), 12, - anon_sym_as, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [39483] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(700), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(698), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [39541] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(767), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(764), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [39599] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(688), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(686), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [39657] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1048), 1, - anon_sym_LBRACE, - ACTIONS(1050), 1, - anon_sym_POUND, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT_LT, - ACTIONS(1056), 1, - anon_sym_DASH, - ACTIONS(1058), 1, - anon_sym_fn, - ACTIONS(1060), 1, - anon_sym_todo, - ACTIONS(1062), 1, - anon_sym_panic, - ACTIONS(1066), 1, - anon_sym_case, - ACTIONS(1068), 1, - anon_sym_BANG, - ACTIONS(1070), 1, - anon_sym_DQUOTE, - ACTIONS(1076), 1, - sym__decimal, - ACTIONS(1078), 1, - sym__name, - ACTIONS(1080), 1, - sym__upname, - ACTIONS(1226), 1, - anon_sym_echo, - ACTIONS(1416), 1, - sym_float, - STATE(27), 1, - sym_identifier, - STATE(76), 1, - sym_tuple, - STATE(78), 1, - sym_anonymous_function, - STATE(1608), 1, - sym__maybe_function_expression, - STATE(1809), 1, - sym__maybe_record_expression, - STATE(1876), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(14), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(69), 2, - sym_record, - sym_record_update, - ACTIONS(1074), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(26), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(106), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [39765] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(692), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(690), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [39823] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1418), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1727), 1, - sym_expression_bit_string_segment, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [39935] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1048), 1, - anon_sym_LBRACE, - ACTIONS(1050), 1, - anon_sym_POUND, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT_LT, - ACTIONS(1056), 1, - anon_sym_DASH, - ACTIONS(1058), 1, - anon_sym_fn, - ACTIONS(1060), 1, - anon_sym_todo, - ACTIONS(1062), 1, - anon_sym_panic, - ACTIONS(1066), 1, - anon_sym_case, - ACTIONS(1068), 1, - anon_sym_BANG, - ACTIONS(1070), 1, - anon_sym_DQUOTE, - ACTIONS(1076), 1, - sym__decimal, - ACTIONS(1078), 1, - sym__name, - ACTIONS(1080), 1, - sym__upname, - ACTIONS(1226), 1, - anon_sym_echo, - ACTIONS(1420), 1, - sym_float, - STATE(27), 1, - sym_identifier, - STATE(76), 1, - sym_tuple, - STATE(78), 1, - sym_anonymous_function, - STATE(1608), 1, - sym__maybe_function_expression, - STATE(1809), 1, - sym__maybe_record_expression, - STATE(1876), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(14), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(69), 2, - sym_record, - sym_record_update, - ACTIONS(1074), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(26), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(120), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [40043] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1422), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(524), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [40151] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1424), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(523), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [40259] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1426), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(517), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [40367] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(1428), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(912), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [40475] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1430), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1727), 1, - sym_expression_bit_string_segment, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [40587] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1432), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(978), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [40695] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1012), 1, - anon_sym_LBRACE, - ACTIONS(1014), 1, - anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_LBRACK, - ACTIONS(1018), 1, - anon_sym_LT_LT, - ACTIONS(1020), 1, - anon_sym_DASH, - ACTIONS(1022), 1, - anon_sym_fn, - ACTIONS(1024), 1, - anon_sym_todo, - ACTIONS(1026), 1, - anon_sym_panic, - ACTIONS(1030), 1, - anon_sym_case, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1034), 1, - anon_sym_DQUOTE, - ACTIONS(1040), 1, - sym__decimal, - ACTIONS(1042), 1, - sym__name, - ACTIONS(1044), 1, - sym__upname, - ACTIONS(1386), 1, - anon_sym_echo, - ACTIONS(1434), 1, - sym_float, - STATE(249), 1, - sym_identifier, - STATE(311), 1, - sym_anonymous_function, - STATE(312), 1, - sym_tuple, - STATE(1638), 1, - sym__maybe_function_expression, - STATE(1820), 1, - sym__maybe_record_expression, - STATE(1825), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(222), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(319), 2, - sym_record, - sym_record_update, - ACTIONS(1038), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(248), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(502), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [40803] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1012), 1, - anon_sym_LBRACE, - ACTIONS(1014), 1, - anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_LBRACK, - ACTIONS(1018), 1, - anon_sym_LT_LT, - ACTIONS(1020), 1, - anon_sym_DASH, - ACTIONS(1022), 1, - anon_sym_fn, - ACTIONS(1024), 1, - anon_sym_todo, - ACTIONS(1026), 1, - anon_sym_panic, - ACTIONS(1030), 1, - anon_sym_case, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1034), 1, - anon_sym_DQUOTE, - ACTIONS(1040), 1, - sym__decimal, - ACTIONS(1042), 1, - sym__name, - ACTIONS(1044), 1, - sym__upname, - ACTIONS(1386), 1, - anon_sym_echo, - ACTIONS(1436), 1, - sym_float, - STATE(249), 1, - sym_identifier, - STATE(311), 1, - sym_anonymous_function, - STATE(312), 1, - sym_tuple, - STATE(1638), 1, - sym__maybe_function_expression, - STATE(1820), 1, - sym__maybe_record_expression, - STATE(1825), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(222), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(319), 2, - sym_record, - sym_record_update, - ACTIONS(1038), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(248), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(493), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [40911] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, - anon_sym_case, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1154), 1, - anon_sym_fn, - ACTIONS(1438), 1, - sym_float, - STATE(74), 1, - sym_identifier, - STATE(91), 1, - sym_anonymous_function, - STATE(92), 1, - sym_tuple, - STATE(1652), 1, - sym__maybe_function_expression, - STATE(1862), 1, - sym__maybe_record_expression, - STATE(1863), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(39), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(93), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(81), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(157), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [41019] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1440), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(981), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [41127] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1012), 1, - anon_sym_LBRACE, - ACTIONS(1014), 1, - anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_LBRACK, - ACTIONS(1018), 1, - anon_sym_LT_LT, - ACTIONS(1020), 1, - anon_sym_DASH, - ACTIONS(1022), 1, - anon_sym_fn, - ACTIONS(1024), 1, - anon_sym_todo, - ACTIONS(1026), 1, - anon_sym_panic, - ACTIONS(1030), 1, - anon_sym_case, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1034), 1, - anon_sym_DQUOTE, - ACTIONS(1040), 1, - sym__decimal, - ACTIONS(1042), 1, - sym__name, - ACTIONS(1044), 1, - sym__upname, - ACTIONS(1386), 1, - anon_sym_echo, - ACTIONS(1442), 1, - sym_float, - STATE(249), 1, - sym_identifier, - STATE(311), 1, - sym_anonymous_function, - STATE(312), 1, - sym_tuple, - STATE(1638), 1, - sym__maybe_function_expression, - STATE(1820), 1, - sym__maybe_record_expression, - STATE(1825), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(222), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(319), 2, - sym_record, - sym_record_update, - ACTIONS(1038), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(248), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(463), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [41235] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1444), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(985), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [41343] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1446), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1536), 1, - sym_expression_bit_string_segment, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [41455] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1448), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(522), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [41563] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1450), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(967), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [41671] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1452), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(996), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [41779] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1454), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(998), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [41887] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1456), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1000), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [41995] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1458), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1002), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [42103] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1460), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1003), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [42211] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1462), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1007), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [42319] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1464), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1010), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [42427] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1188), 1, - anon_sym_PIPE_GT, - ACTIONS(1308), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1310), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1190), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1184), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1186), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1192), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(744), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(746), 12, - anon_sym_as, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [42505] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1466), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1008), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [42613] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1468), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1727), 1, - sym_expression_bit_string_segment, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [42725] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1470), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(947), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [42833] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1472), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1727), 1, - sym_expression_bit_string_segment, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [42945] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1474), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(512), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [43053] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1476), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(513), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [43161] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1478), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(514), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [43269] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1480), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1016), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [43377] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1188), 1, - anon_sym_PIPE_GT, - ACTIONS(1308), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1310), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1190), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1312), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1184), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1186), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1192), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(748), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(750), 12, - anon_sym_as, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [43455] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1482), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1017), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [43563] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1484), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1019), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [43671] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - ACTIONS(1486), 1, - anon_sym_GT_GT, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1600), 1, - sym_expression_bit_string_segment, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [43783] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(243), 1, - sym_float, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(913), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [43891] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1488), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(516), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [43999] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(1198), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(717), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [44107] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1496), 1, - anon_sym_AMP_AMP, - ACTIONS(1504), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1490), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1492), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1498), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1506), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1500), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1502), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1508), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(722), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(724), 11, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [44184] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1496), 1, - anon_sym_AMP_AMP, - ACTIONS(1504), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1490), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1492), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1498), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1506), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1500), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1502), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1508), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(658), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(660), 11, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [44261] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1496), 1, - anon_sym_AMP_AMP, - ACTIONS(1504), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1490), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1492), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1498), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1506), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1500), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1502), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1508), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(794), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(796), 11, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [44338] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(712), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(710), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [44395] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1490), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1508), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(712), 17, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(710), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [44456] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1496), 1, - anon_sym_AMP_AMP, - ACTIONS(1504), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1490), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1492), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1498), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1506), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1500), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1502), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1508), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(712), 11, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(710), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [44531] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1496), 1, - anon_sym_AMP_AMP, - ACTIONS(1504), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1490), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1492), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1498), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1506), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1500), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1502), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1508), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(798), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(800), 11, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [44608] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1504), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1490), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1492), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1498), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1506), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1500), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1502), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1508), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(712), 11, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(710), 13, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [44681] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1504), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1490), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1492), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1506), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1500), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1502), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1508), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(712), 11, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(710), 15, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [44752] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1504), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1490), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1492), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1506), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1508), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(712), 15, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(710), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [44819] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1490), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1492), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1506), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1508), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(712), 15, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(710), 20, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [44884] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(712), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(710), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [44941] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1214), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1727), 1, - sym_expression_bit_string_segment, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1434), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [45050] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1496), 1, - anon_sym_AMP_AMP, - ACTIONS(1504), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1490), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1492), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1498), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1506), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1500), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1502), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1508), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(702), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(704), 11, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [45127] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1496), 1, - anon_sym_AMP_AMP, - ACTIONS(1504), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1490), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1492), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1498), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1506), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1500), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1502), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1508), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(748), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(750), 11, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [45204] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1496), 1, - anon_sym_AMP_AMP, - ACTIONS(1504), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1490), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1492), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1498), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1506), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1500), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1502), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1508), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(802), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(804), 11, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [45281] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1496), 1, - anon_sym_AMP_AMP, - ACTIONS(1504), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1490), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1492), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1498), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1506), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1500), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1502), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1508), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(806), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(808), 11, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [45358] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1496), 1, - anon_sym_AMP_AMP, - ACTIONS(1504), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1490), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1492), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1498), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1506), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1500), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1502), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1508), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(810), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(812), 11, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [45435] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1496), 1, - anon_sym_AMP_AMP, - ACTIONS(1504), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1490), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1492), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1498), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1506), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1500), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1502), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1508), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(744), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(746), 11, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [45512] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1012), 1, - anon_sym_LBRACE, - ACTIONS(1014), 1, - anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_LBRACK, - ACTIONS(1018), 1, - anon_sym_LT_LT, - ACTIONS(1020), 1, - anon_sym_DASH, - ACTIONS(1022), 1, - anon_sym_fn, - ACTIONS(1024), 1, - anon_sym_todo, - ACTIONS(1026), 1, - anon_sym_panic, - ACTIONS(1030), 1, - anon_sym_case, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1034), 1, - anon_sym_DQUOTE, - ACTIONS(1040), 1, - sym__decimal, - ACTIONS(1042), 1, - sym__name, - ACTIONS(1044), 1, - sym__upname, - ACTIONS(1386), 1, - anon_sym_echo, - ACTIONS(1510), 1, - sym_float, - STATE(249), 1, - sym_identifier, - STATE(311), 1, - sym_anonymous_function, - STATE(312), 1, - sym_tuple, - STATE(1638), 1, - sym__maybe_function_expression, - STATE(1820), 1, - sym__maybe_record_expression, - STATE(1825), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(222), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(319), 2, - sym_record, - sym_record_update, - ACTIONS(1038), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(248), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(461), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [45618] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1512), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(229), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [45724] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, - anon_sym_case, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1154), 1, - anon_sym_fn, - ACTIONS(1514), 1, - sym_float, - STATE(74), 1, - sym_identifier, - STATE(91), 1, - sym_anonymous_function, - STATE(92), 1, - sym_tuple, - STATE(1652), 1, - sym__maybe_function_expression, - STATE(1862), 1, - sym__maybe_record_expression, - STATE(1863), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(39), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(93), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(81), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(129), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [45830] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(1516), 1, - sym_float, - ACTIONS(1520), 1, - sym__decimal, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(1518), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(732), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [45936] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(235), 1, - anon_sym_todo, - ACTIONS(237), 1, - anon_sym_panic, - ACTIONS(239), 1, - anon_sym_echo, - ACTIONS(958), 1, - anon_sym_DASH, - ACTIONS(962), 1, - anon_sym_BANG, - ACTIONS(1522), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(707), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [46042] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1522), 1, - sym_float, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(707), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [46148] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1012), 1, - anon_sym_LBRACE, - ACTIONS(1014), 1, - anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_LBRACK, - ACTIONS(1018), 1, - anon_sym_LT_LT, - ACTIONS(1020), 1, - anon_sym_DASH, - ACTIONS(1022), 1, - anon_sym_fn, - ACTIONS(1024), 1, - anon_sym_todo, - ACTIONS(1026), 1, - anon_sym_panic, - ACTIONS(1030), 1, - anon_sym_case, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1034), 1, - anon_sym_DQUOTE, - ACTIONS(1042), 1, - sym__name, - ACTIONS(1044), 1, - sym__upname, - ACTIONS(1386), 1, - anon_sym_echo, - ACTIONS(1524), 1, - sym_float, - ACTIONS(1528), 1, - sym__decimal, - STATE(249), 1, - sym_identifier, - STATE(311), 1, - sym_anonymous_function, - STATE(312), 1, - sym_tuple, - STATE(1638), 1, - sym__maybe_function_expression, - STATE(1820), 1, - sym__maybe_record_expression, - STATE(1825), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(222), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(319), 2, - sym_record, - sym_record_update, - ACTIONS(1526), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(248), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(464), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [46254] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(421), 1, - anon_sym_DASH, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(425), 1, - anon_sym_todo, - ACTIONS(427), 1, - anon_sym_panic, - ACTIONS(429), 1, - anon_sym_echo, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(439), 1, - anon_sym_BANG, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1530), 1, - sym_float, - ACTIONS(1534), 1, - sym__decimal, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1826), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(1532), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(251), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [46360] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1512), 1, - sym_float, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(229), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [46466] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(203), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - anon_sym_POUND, - ACTIONS(207), 1, - anon_sym_LBRACK, - ACTIONS(209), 1, - anon_sym_LT_LT, - ACTIONS(211), 1, - anon_sym_fn, - ACTIONS(213), 1, - anon_sym_todo, - ACTIONS(215), 1, - anon_sym_panic, - ACTIONS(217), 1, - anon_sym_echo, - ACTIONS(219), 1, - anon_sym_case, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(231), 1, - sym__name, - ACTIONS(233), 1, - sym__upname, - ACTIONS(968), 1, - anon_sym_DASH, - ACTIONS(972), 1, - anon_sym_BANG, - ACTIONS(1536), 1, - sym_float, - STATE(862), 1, - sym_identifier, - STATE(933), 1, - sym_tuple, - STATE(935), 1, - sym_anonymous_function, - STATE(1718), 1, - sym__maybe_function_expression, - STATE(1760), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(856), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(931), 2, - sym_record, - sym_record_update, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(873), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(999), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [46572] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_POUND, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - anon_sym_LT_LT, - ACTIONS(79), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_panic, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(87), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(1516), 1, - sym_float, - ACTIONS(1520), 1, - sym__decimal, - STATE(649), 1, - sym_identifier, - STATE(681), 1, - sym_tuple, - STATE(685), 1, - sym_anonymous_function, - STATE(1682), 1, - sym__maybe_function_expression, - STATE(1796), 1, - sym__maybe_record_expression, - STATE(1821), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(642), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(679), 2, - sym_record, - sym_record_update, - ACTIONS(1518), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(644), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(732), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [46678] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - ACTIONS(191), 1, - anon_sym_fn, - ACTIONS(193), 1, - anon_sym_todo, - ACTIONS(195), 1, - anon_sym_panic, - ACTIONS(197), 1, - anon_sym_echo, - ACTIONS(199), 1, - anon_sym_case, - ACTIONS(1092), 1, - anon_sym_POUND, - ACTIONS(1094), 1, - anon_sym_LBRACK, - ACTIONS(1096), 1, - anon_sym_LT_LT, - ACTIONS(1098), 1, - anon_sym_DASH, - ACTIONS(1102), 1, - anon_sym_BANG, - ACTIONS(1104), 1, - anon_sym_DQUOTE, - ACTIONS(1110), 1, - sym__decimal, - ACTIONS(1112), 1, - sym__name, - ACTIONS(1114), 1, - sym__upname, - ACTIONS(1538), 1, - sym_float, - STATE(563), 1, - sym_identifier, - STATE(585), 1, - sym_tuple, - STATE(588), 1, - sym_anonymous_function, - STATE(1678), 1, - sym__maybe_function_expression, - STATE(1782), 1, - sym__maybe_tuple_expression, - STATE(1831), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(555), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(584), 2, - sym_record, - sym_record_update, - ACTIONS(1108), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(562), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(595), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [46784] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(85), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(415), 1, - anon_sym_POUND, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_LT_LT, - ACTIONS(423), 1, - anon_sym_fn, - ACTIONS(431), 1, - anon_sym_case, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(1206), 1, - anon_sym_DASH, - ACTIONS(1208), 1, - anon_sym_todo, - ACTIONS(1210), 1, - anon_sym_panic, - ACTIONS(1212), 1, - anon_sym_BANG, - ACTIONS(1530), 1, - sym_float, - ACTIONS(1534), 1, - sym__decimal, - STATE(211), 1, - sym_identifier, - STATE(218), 1, - sym_tuple, - STATE(220), 1, - sym_anonymous_function, - STATE(1653), 1, - sym__maybe_function_expression, - STATE(1762), 1, - sym__maybe_record_expression, - STATE(1766), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(187), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(214), 2, - sym_record, - sym_record_update, - ACTIONS(1532), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(202), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(251), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [46890] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1048), 1, - anon_sym_LBRACE, - ACTIONS(1050), 1, - anon_sym_POUND, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT_LT, - ACTIONS(1056), 1, - anon_sym_DASH, - ACTIONS(1058), 1, - anon_sym_fn, - ACTIONS(1060), 1, - anon_sym_todo, - ACTIONS(1062), 1, - anon_sym_panic, - ACTIONS(1066), 1, - anon_sym_case, - ACTIONS(1068), 1, - anon_sym_BANG, - ACTIONS(1070), 1, - anon_sym_DQUOTE, - ACTIONS(1076), 1, - sym__decimal, - ACTIONS(1078), 1, - sym__name, - ACTIONS(1080), 1, - sym__upname, - ACTIONS(1226), 1, - anon_sym_echo, - ACTIONS(1540), 1, - sym_float, - STATE(27), 1, - sym_identifier, - STATE(76), 1, - sym_tuple, - STATE(78), 1, - sym_anonymous_function, - STATE(1608), 1, - sym__maybe_function_expression, - STATE(1809), 1, - sym__maybe_record_expression, - STATE(1876), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(14), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(69), 2, - sym_record, - sym_record_update, - ACTIONS(1074), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(26), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(85), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [46996] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(203), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - anon_sym_POUND, - ACTIONS(207), 1, - anon_sym_LBRACK, - ACTIONS(209), 1, - anon_sym_LT_LT, - ACTIONS(211), 1, - anon_sym_fn, - ACTIONS(213), 1, - anon_sym_todo, - ACTIONS(215), 1, - anon_sym_panic, - ACTIONS(217), 1, - anon_sym_echo, - ACTIONS(219), 1, - anon_sym_case, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(231), 1, - sym__name, - ACTIONS(233), 1, - sym__upname, - ACTIONS(968), 1, - anon_sym_DASH, - ACTIONS(972), 1, - anon_sym_BANG, - ACTIONS(1542), 1, - sym_float, - ACTIONS(1546), 1, - sym__decimal, - STATE(862), 1, - sym_identifier, - STATE(933), 1, - sym_tuple, - STATE(935), 1, - sym_anonymous_function, - STATE(1718), 1, - sym__maybe_function_expression, - STATE(1760), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(856), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(931), 2, - sym_record, - sym_record_update, - ACTIONS(1544), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(873), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(962), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [47102] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1048), 1, - anon_sym_LBRACE, - ACTIONS(1050), 1, - anon_sym_POUND, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT_LT, - ACTIONS(1056), 1, - anon_sym_DASH, - ACTIONS(1058), 1, - anon_sym_fn, - ACTIONS(1060), 1, - anon_sym_todo, - ACTIONS(1062), 1, - anon_sym_panic, - ACTIONS(1066), 1, - anon_sym_case, - ACTIONS(1068), 1, - anon_sym_BANG, - ACTIONS(1070), 1, - anon_sym_DQUOTE, - ACTIONS(1078), 1, - sym__name, - ACTIONS(1080), 1, - sym__upname, - ACTIONS(1226), 1, - anon_sym_echo, - ACTIONS(1548), 1, - sym_float, - ACTIONS(1552), 1, - sym__decimal, - STATE(27), 1, - sym_identifier, - STATE(76), 1, - sym_tuple, - STATE(78), 1, - sym_anonymous_function, - STATE(1608), 1, - sym__maybe_function_expression, - STATE(1809), 1, - sym__maybe_record_expression, - STATE(1876), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(14), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(69), 2, - sym_record, - sym_record_update, - ACTIONS(1550), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(26), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(95), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [47208] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, - anon_sym_case, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1154), 1, - anon_sym_fn, - ACTIONS(1554), 1, - sym_float, - ACTIONS(1558), 1, - sym__decimal, - STATE(74), 1, - sym_identifier, - STATE(91), 1, - sym_anonymous_function, - STATE(92), 1, - sym_tuple, - STATE(1652), 1, - sym__maybe_function_expression, - STATE(1862), 1, - sym__maybe_record_expression, - STATE(1863), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(39), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(93), 2, - sym_record, - sym_record_update, - ACTIONS(1556), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(81), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(162), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [47314] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - ACTIONS(191), 1, - anon_sym_fn, - ACTIONS(193), 1, - anon_sym_todo, - ACTIONS(195), 1, - anon_sym_panic, - ACTIONS(197), 1, - anon_sym_echo, - ACTIONS(199), 1, - anon_sym_case, - ACTIONS(1092), 1, - anon_sym_POUND, - ACTIONS(1094), 1, - anon_sym_LBRACK, - ACTIONS(1096), 1, - anon_sym_LT_LT, - ACTIONS(1098), 1, - anon_sym_DASH, - ACTIONS(1102), 1, - anon_sym_BANG, - ACTIONS(1104), 1, - anon_sym_DQUOTE, - ACTIONS(1112), 1, - sym__name, - ACTIONS(1114), 1, - sym__upname, - ACTIONS(1560), 1, - sym_float, - ACTIONS(1564), 1, - sym__decimal, - STATE(563), 1, - sym_identifier, - STATE(585), 1, - sym_tuple, - STATE(588), 1, - sym_anonymous_function, - STATE(1678), 1, - sym__maybe_function_expression, - STATE(1782), 1, - sym__maybe_tuple_expression, - STATE(1831), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(555), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(584), 2, - sym_record, - sym_record_update, - ACTIONS(1562), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(562), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(621), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [47420] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(476), 10, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(474), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [47475] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(484), 10, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(482), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [47530] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(409), 10, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(407), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [47585] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(405), 10, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(403), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [47640] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(385), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(383), 32, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [47693] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(716), 9, - anon_sym_SLASH, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(714), 32, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [47746] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(393), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(391), 32, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [47799] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(514), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(512), 32, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [47852] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(708), 9, - anon_sym_SLASH, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(706), 32, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [47905] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1566), 1, - anon_sym_LPAREN, - STATE(586), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(375), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(373), 26, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [47960] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1568), 1, - anon_sym_LPAREN, - ACTIONS(1570), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(600), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(598), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48014] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(528), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(526), 27, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48064] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(514), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(512), 27, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48114] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1574), 1, - anon_sym_LPAREN, - STATE(599), 1, - sym_constant_record_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1576), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1572), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [48168] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(401), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(399), 27, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48218] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(524), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(522), 27, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48268] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(465), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(459), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48322] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(1578), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(459), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48376] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(381), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(379), 27, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48426] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(385), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(383), 27, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48476] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(455), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(453), 27, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48526] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(389), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(387), 27, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48576] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(506), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(504), 27, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48626] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1582), 1, - anon_sym_LPAREN, - ACTIONS(1584), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(618), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(616), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48680] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(397), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(395), 27, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48730] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(510), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(508), 27, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48780] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(405), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(403), 27, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48830] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(496), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(494), 27, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48880] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(409), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(407), 27, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48930] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(484), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(482), 27, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48980] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(476), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(474), 27, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [49030] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(393), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(391), 27, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [49080] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(628), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(626), 26, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [49129] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(608), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(606), 26, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [49178] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(614), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(612), 26, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [49227] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(632), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(630), 26, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [49276] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(592), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(590), 26, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [49325] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(636), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(634), 26, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [49374] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(642), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(459), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [49425] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(648), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(459), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [49476] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(640), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(638), 26, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [49525] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(596), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(594), 26, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [49574] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(459), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [49625] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1588), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1586), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [49673] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1590), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1594), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1596), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(712), 7, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(710), 19, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [49729] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1598), 1, - anon_sym_AMP_AMP, - ACTIONS(1606), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1590), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1594), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1600), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(712), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1596), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1602), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1604), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(710), 11, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [49795] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1610), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1608), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [49843] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1614), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1612), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [49891] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1618), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1616), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [49939] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(656), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(654), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [49987] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(708), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(706), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [50035] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(652), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(650), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [50083] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(712), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(710), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [50131] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1622), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1620), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [50179] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1626), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1624), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [50227] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1598), 1, - anon_sym_AMP_AMP, - ACTIONS(1606), 1, - anon_sym_PIPE_GT, - ACTIONS(1630), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1590), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1594), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1600), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1632), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1596), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1602), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1604), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1628), 10, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [50295] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1606), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1590), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1594), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1600), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(712), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1596), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1602), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1604), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(710), 12, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [50359] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1636), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1634), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [50407] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1640), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1638), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [50455] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(742), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(740), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [50503] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(692), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(690), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [50551] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1644), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1642), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [50599] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1606), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1590), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1594), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(712), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1596), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1602), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1604), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(710), 14, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [50661] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1606), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1590), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1594), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1596), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(712), 7, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(710), 18, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [50719] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1648), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1646), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [50767] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(688), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(686), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [50815] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(712), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(710), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [50863] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1652), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1650), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [50911] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(758), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(756), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [50959] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1656), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1654), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [51007] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(762), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(760), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [51055] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1660), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1658), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [51103] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(772), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(770), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [51151] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(716), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(714), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [51199] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1598), 1, - anon_sym_AMP_AMP, - ACTIONS(1606), 1, - anon_sym_PIPE_GT, - ACTIONS(1630), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1590), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1594), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1600), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(704), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1596), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1602), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1604), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(702), 10, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [51267] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(700), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(698), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [51315] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1590), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1596), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(712), 9, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(710), 21, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [51367] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1664), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1662), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [51415] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(734), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(732), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [51463] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(696), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(694), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [51511] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(720), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(718), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [51559] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1668), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1666), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [51607] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(684), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(682), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [51655] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1598), 1, - anon_sym_AMP_AMP, - ACTIONS(1606), 1, - anon_sym_PIPE_GT, - ACTIONS(1630), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1590), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1594), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1600), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1672), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1596), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1602), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1604), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1670), 10, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [51723] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1676), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1674), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [51771] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(738), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(736), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [51819] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(754), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(752), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [51867] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(767), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(764), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [51915] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1680), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1678), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [51963] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1598), 1, - anon_sym_AMP_AMP, - ACTIONS(1606), 1, - anon_sym_PIPE_GT, - ACTIONS(1630), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1590), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1594), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1600), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(724), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1596), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1602), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1604), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(722), 10, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [52031] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1684), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1682), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [52079] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1598), 1, - anon_sym_AMP_AMP, - ACTIONS(1606), 1, - anon_sym_PIPE_GT, - ACTIONS(1630), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1590), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1594), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1600), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1596), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1602), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1604), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(658), 10, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [52147] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1690), 1, - anon_sym_SLASH, - STATE(638), 1, - aux_sym_module_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1686), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1688), 19, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [52198] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1697), 1, - anon_sym_SLASH, - STATE(638), 1, - aux_sym_module_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1693), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1695), 19, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [52249] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1697), 1, - anon_sym_SLASH, - STATE(639), 1, - aux_sym_module_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1699), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1701), 19, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [52300] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1707), 1, - anon_sym_LPAREN, - STATE(672), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1703), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_EQ, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1705), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [52350] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1709), 1, - anon_sym_LPAREN, - STATE(702), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(375), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(373), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [52400] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1686), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1688), 20, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [52446] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(1711), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(459), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [52495] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1714), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1716), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [52540] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(389), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(387), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [52585] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(397), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(395), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [52630] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(401), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(399), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [52675] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(1718), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(459), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [52724] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(506), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(504), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [52769] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1726), 1, - anon_sym_LPAREN, - STATE(749), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1722), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1724), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [52818] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1728), 1, - anon_sym_LPAREN, - STATE(711), 1, - sym_constant_record_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1572), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1576), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [52867] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(496), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(494), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [52912] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1734), 1, - anon_sym_LPAREN, - STATE(778), 1, - sym__attribute_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1730), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1732), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [52961] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(1740), 1, - anon_sym_DASH_GT, - STATE(705), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1736), 12, - ts_builtin_sym_end, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1738), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [53012] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1742), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1744), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [53057] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1750), 1, - anon_sym_DOT, - ACTIONS(1752), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1746), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1748), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [53106] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(528), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(526), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [53151] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(510), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(508), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [53196] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(1758), 1, - anon_sym_DASH_GT, - STATE(782), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1754), 12, - ts_builtin_sym_end, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1756), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [53247] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(381), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(379), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [53292] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(524), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(522), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [53337] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(455), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(453), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [53382] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1760), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(600), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(598), 22, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [53430] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1768), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1764), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1766), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [53476] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1770), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1772), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [53520] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1774), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_EQ, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1776), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [53564] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1778), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1780), 19, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [53608] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1786), 1, - anon_sym_LBRACE, - ACTIONS(1788), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1782), 12, - ts_builtin_sym_end, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1784), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [53656] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1790), 1, - anon_sym_RBRACE, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - sym_float, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1345), 1, - sym__pattern, - STATE(1360), 1, - sym_case_clause_pattern, - STATE(1511), 1, - sym_case_clause_patterns, - STATE(1755), 1, - sym_case_clauses, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(726), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1296), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [53740] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - sym_float, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - ACTIONS(1814), 1, - anon_sym_RBRACE, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1345), 1, - sym__pattern, - STATE(1360), 1, - sym_case_clause_pattern, - STATE(1511), 1, - sym_case_clause_patterns, - STATE(1799), 1, - sym_case_clauses, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(726), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1296), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [53824] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1816), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_EQ, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1818), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [53868] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - sym_float, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - ACTIONS(1820), 1, - anon_sym_RBRACE, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1345), 1, - sym__pattern, - STATE(1360), 1, - sym_case_clause_pattern, - STATE(1511), 1, - sym_case_clause_patterns, - STATE(1834), 1, - sym_case_clauses, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(726), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1296), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [53952] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - sym_float, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - ACTIONS(1822), 1, - anon_sym_RBRACE, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1345), 1, - sym__pattern, - STATE(1360), 1, - sym_case_clause_pattern, - STATE(1511), 1, - sym_case_clause_patterns, - STATE(1780), 1, - sym_case_clauses, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(726), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1296), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [54036] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - STATE(788), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1824), 12, - ts_builtin_sym_end, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1826), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [54084] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1828), 1, - anon_sym_LPAREN, - ACTIONS(1830), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(618), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(616), 22, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [54132] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1836), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1832), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1834), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [54178] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - sym_float, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - ACTIONS(1838), 1, - anon_sym_RBRACE, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1345), 1, - sym__pattern, - STATE(1360), 1, - sym_case_clause_pattern, - STATE(1511), 1, - sym_case_clause_patterns, - STATE(1886), 1, - sym_case_clauses, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(726), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1296), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [54262] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1840), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(459), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [54308] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1846), 1, - anon_sym_LBRACE, - ACTIONS(1848), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1842), 12, - ts_builtin_sym_end, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1844), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [54356] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1850), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(459), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [54402] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1852), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1854), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [54446] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - sym_float, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - ACTIONS(1856), 1, - anon_sym_RBRACE, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1345), 1, - sym__pattern, - STATE(1360), 1, - sym_case_clause_pattern, - STATE(1511), 1, - sym_case_clause_patterns, - STATE(1874), 1, - sym_case_clauses, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(726), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1296), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [54530] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1858), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_EQ, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1860), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [54574] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(459), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [54620] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1866), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1862), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1864), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [54666] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1868), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1870), 19, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [54710] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(482), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1872), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1874), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [54756] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1876), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_EQ, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1878), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [54800] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - sym_float, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - ACTIONS(1880), 1, - anon_sym_RBRACE, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1345), 1, - sym__pattern, - STATE(1360), 1, - sym_case_clause_pattern, - STATE(1511), 1, - sym_case_clause_patterns, - STATE(1788), 1, - sym_case_clauses, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(726), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1296), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [54884] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - STATE(728), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1882), 12, - ts_builtin_sym_end, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1884), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [54932] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(628), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(626), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [54976] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(608), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(606), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [55020] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1886), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1888), 19, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [55064] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(596), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(594), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [55108] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1890), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1892), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [55152] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(636), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(634), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [55196] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(632), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(630), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [55240] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1894), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1896), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [55284] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1898), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1900), 19, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [55328] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(614), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(612), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [55372] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(640), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(638), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [55416] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(592), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(590), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [55460] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1902), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_EQ, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1904), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [55504] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1906), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1908), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [55547] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1910), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1912), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [55590] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(656), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(654), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [55633] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1914), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1916), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [55676] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1918), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1920), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [55719] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(738), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(736), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [55762] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1620), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1622), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [55805] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1678), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1680), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [55848] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1682), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1684), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [55891] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(754), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(752), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [55934] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1922), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1924), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [55977] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1926), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1928), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [56020] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(712), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(710), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [56063] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(712), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(710), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [56106] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1930), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1932), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [56149] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1934), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1936), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [56192] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(684), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(682), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [56235] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(720), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(718), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [56278] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(696), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(694), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [56321] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(734), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(732), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [56364] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1938), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1940), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [56407] = 23, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - sym_float, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - ACTIONS(1942), 1, - anon_sym_RBRACE, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1345), 1, - sym__pattern, - STATE(1360), 1, - sym_case_clause_pattern, - STATE(1511), 1, - sym_case_clause_patterns, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(772), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1296), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [56488] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(772), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(770), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [56531] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1944), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1946), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [56574] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(762), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(760), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [56617] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1638), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1640), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [56660] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(758), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(756), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [56703] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(700), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(698), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [56746] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(767), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(764), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [56789] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1948), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1950), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [56832] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(742), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(740), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [56875] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(652), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(650), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [56918] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(1954), 1, - anon_sym_DASH, - ACTIONS(1956), 1, - anon_sym_size, - ACTIONS(1962), 1, - anon_sym_unit, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1952), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1960), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1535), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1958), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [56975] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1666), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1668), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [57018] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1964), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1966), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [57061] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1968), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1970), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [57104] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1662), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1664), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [57147] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1972), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1974), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [57190] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1976), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1978), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [57233] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1980), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1982), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [57276] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1658), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1660), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [57319] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1984), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1986), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [57362] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1586), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1588), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [57405] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1988), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1990), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [57448] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1992), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1994), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [57491] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1996), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1998), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [57534] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1642), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1644), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [57577] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2000), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2002), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [57620] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2004), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2006), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [57663] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2008), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2010), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [57706] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2012), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2014), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [57749] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(688), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(686), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [57792] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2016), 1, - anon_sym_RPAREN, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2020), 1, - anon_sym_DOT_DOT, - ACTIONS(2022), 1, - sym_float, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1427), 1, - sym_record_pattern_argument, - STATE(1538), 1, - sym__pattern, - STATE(1797), 1, - sym_pattern_spread, - STATE(1828), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [57875] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(692), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(690), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [57918] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(1954), 1, - anon_sym_DASH, - ACTIONS(1962), 1, - anon_sym_unit, - ACTIONS(2026), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2024), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1960), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1520), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1958), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [57975] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2028), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2030), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [58018] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(1954), 1, - anon_sym_DASH, - ACTIONS(1962), 1, - anon_sym_unit, - ACTIONS(2034), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2032), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1960), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1443), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1958), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [58075] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2036), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2038), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [58118] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1654), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1656), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [58161] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1646), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1648), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [58204] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1616), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1618), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [58247] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2020), 1, - anon_sym_DOT_DOT, - ACTIONS(2022), 1, - sym_float, - ACTIONS(2040), 1, - anon_sym_RPAREN, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1332), 1, - sym_record_pattern_argument, - STATE(1538), 1, - sym__pattern, - STATE(1823), 1, - sym_pattern_spread, - STATE(1828), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [58330] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1624), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1626), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [58373] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2042), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2044), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [58416] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(1954), 1, - anon_sym_DASH, - ACTIONS(1956), 1, - anon_sym_size, - ACTIONS(1962), 1, - anon_sym_unit, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2046), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1960), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1535), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1958), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [58473] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2048), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2050), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [58516] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1842), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1844), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [58559] = 23, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2052), 1, - anon_sym_RBRACE, - ACTIONS(2054), 1, - anon_sym_POUND, - ACTIONS(2057), 1, - anon_sym_LBRACK, - ACTIONS(2060), 1, - anon_sym_LT_LT, - ACTIONS(2063), 1, - anon_sym_DASH, - ACTIONS(2066), 1, - anon_sym_DQUOTE, - ACTIONS(2069), 1, - sym_float, - ACTIONS(2075), 1, - sym__decimal, - ACTIONS(2078), 1, - sym__discard_name, - ACTIONS(2081), 1, - sym__name, - ACTIONS(2084), 1, - sym__upname, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1345), 1, - sym__pattern, - STATE(1360), 1, - sym_case_clause_pattern, - STATE(1511), 1, - sym_case_clause_patterns, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(772), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(2072), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1296), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [58640] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(1954), 1, - anon_sym_DASH, - ACTIONS(1962), 1, - anon_sym_unit, - ACTIONS(2034), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2087), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1960), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1443), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1958), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [58697] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2020), 1, - anon_sym_DOT_DOT, - ACTIONS(2022), 1, - sym_float, - ACTIONS(2089), 1, - anon_sym_RPAREN, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1427), 1, - sym_record_pattern_argument, - STATE(1538), 1, - sym__pattern, - STATE(1828), 1, - sym_label, - STATE(1858), 1, - sym_pattern_spread, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [58780] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1608), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1610), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [58823] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1674), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1676), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [58866] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2091), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2093), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [58909] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2095), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2097), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [58952] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2099), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2101), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [58995] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2103), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2105), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [59038] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1650), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1652), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [59081] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2107), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2109), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [59124] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2111), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2113), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [59167] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2115), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2117), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [59210] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1612), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1614), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [59253] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1634), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1636), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [59296] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2119), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2121), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [59339] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2123), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2125), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [59382] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2127), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2129), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [59425] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2131), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2133), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [59468] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(1954), 1, - anon_sym_DASH, - ACTIONS(1962), 1, - anon_sym_unit, - ACTIONS(2026), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2135), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1960), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1520), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1958), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [59525] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2137), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(2139), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [59568] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(2141), 1, - anon_sym_LBRACE, - ACTIONS(2143), 1, - anon_sym_POUND, - ACTIONS(2145), 1, - anon_sym_LBRACK, - ACTIONS(2147), 1, - anon_sym_LT_LT, - ACTIONS(2149), 1, - anon_sym_DASH, - ACTIONS(2151), 1, - sym_float, - STATE(1030), 1, - sym_identifier, - STATE(1040), 1, - sym__case_clause_guard_binary_expression, - STATE(1041), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(979), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1049), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [59640] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(231), 1, - sym__name, - ACTIONS(233), 1, - sym__upname, - ACTIONS(972), 1, - anon_sym_BANG, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(2153), 1, - anon_sym_LBRACE, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2161), 1, - sym_float, - STATE(1026), 1, - sym_identifier, - STATE(1079), 1, - sym__case_clause_guard_binary_expression, - STATE(1080), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1069), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [59712] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(381), 9, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PIPE, - ACTIONS(379), 21, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [59754] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(231), 1, - sym__name, - ACTIONS(233), 1, - sym__upname, - ACTIONS(972), 1, - anon_sym_BANG, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(2153), 1, - anon_sym_LBRACE, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2163), 1, - sym_float, - STATE(1026), 1, - sym_identifier, - STATE(1079), 1, - sym__case_clause_guard_binary_expression, - STATE(1080), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1060), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [59826] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(2141), 1, - anon_sym_LBRACE, - ACTIONS(2143), 1, - anon_sym_POUND, - ACTIONS(2145), 1, - anon_sym_LBRACK, - ACTIONS(2147), 1, - anon_sym_LT_LT, - ACTIONS(2149), 1, - anon_sym_DASH, - ACTIONS(2165), 1, - sym_float, - STATE(1030), 1, - sym_identifier, - STATE(1040), 1, - sym__case_clause_guard_binary_expression, - STATE(1041), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(979), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1045), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [59898] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(231), 1, - sym__name, - ACTIONS(233), 1, - sym__upname, - ACTIONS(972), 1, - anon_sym_BANG, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(2153), 1, - anon_sym_LBRACE, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2167), 1, - sym_float, - STATE(1026), 1, - sym_identifier, - STATE(1079), 1, - sym__case_clause_guard_binary_expression, - STATE(1080), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1061), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [59970] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(2141), 1, - anon_sym_LBRACE, - ACTIONS(2143), 1, - anon_sym_POUND, - ACTIONS(2145), 1, - anon_sym_LBRACK, - ACTIONS(2147), 1, - anon_sym_LT_LT, - ACTIONS(2149), 1, - anon_sym_DASH, - ACTIONS(2169), 1, - sym_float, - STATE(1030), 1, - sym_identifier, - STATE(1040), 1, - sym__case_clause_guard_binary_expression, - STATE(1041), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(979), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1039), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [60042] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(231), 1, - sym__name, - ACTIONS(233), 1, - sym__upname, - ACTIONS(972), 1, - anon_sym_BANG, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(2153), 1, - anon_sym_LBRACE, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2171), 1, - sym_float, - STATE(1026), 1, - sym_identifier, - STATE(1079), 1, - sym__case_clause_guard_binary_expression, - STATE(1080), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1078), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [60114] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(1954), 1, - anon_sym_DASH, - ACTIONS(1962), 1, - anon_sym_unit, - ACTIONS(2034), 1, - anon_sym_size, - STATE(1721), 1, - sym_expression_bit_string_segment_options, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1960), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1384), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1958), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [60170] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(2141), 1, - anon_sym_LBRACE, - ACTIONS(2143), 1, - anon_sym_POUND, - ACTIONS(2145), 1, - anon_sym_LBRACK, - ACTIONS(2147), 1, - anon_sym_LT_LT, - ACTIONS(2149), 1, - anon_sym_DASH, - ACTIONS(2173), 1, - sym_float, - STATE(1030), 1, - sym_identifier, - STATE(1040), 1, - sym__case_clause_guard_binary_expression, - STATE(1041), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(979), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1050), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [60242] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(2141), 1, - anon_sym_LBRACE, - ACTIONS(2143), 1, - anon_sym_POUND, - ACTIONS(2145), 1, - anon_sym_LBRACK, - ACTIONS(2147), 1, - anon_sym_LT_LT, - ACTIONS(2149), 1, - anon_sym_DASH, - ACTIONS(2175), 1, - sym_float, - STATE(1030), 1, - sym_identifier, - STATE(1040), 1, - sym__case_clause_guard_binary_expression, - STATE(1041), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(979), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1051), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [60314] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(712), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 16, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_DOT_DOT, - [60364] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(231), 1, - sym__name, - ACTIONS(233), 1, - sym__upname, - ACTIONS(972), 1, - anon_sym_BANG, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(2153), 1, - anon_sym_LBRACE, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2185), 1, - sym_float, - STATE(1026), 1, - sym_identifier, - STATE(1079), 1, - sym__case_clause_guard_binary_expression, - STATE(1080), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1067), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [60436] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(231), 1, - sym__name, - ACTIONS(233), 1, - sym__upname, - ACTIONS(972), 1, - anon_sym_BANG, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(2153), 1, - anon_sym_LBRACE, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2187), 1, - sym_float, - STATE(1026), 1, - sym_identifier, - STATE(1079), 1, - sym__case_clause_guard_binary_expression, - STATE(1080), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1068), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [60508] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(712), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 15, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_DOT_DOT, - [60560] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(710), 11, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DOT_DOT, - [60614] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(2141), 1, - anon_sym_LBRACE, - ACTIONS(2143), 1, - anon_sym_POUND, - ACTIONS(2145), 1, - anon_sym_LBRACK, - ACTIONS(2147), 1, - anon_sym_LT_LT, - ACTIONS(2149), 1, - anon_sym_DASH, - ACTIONS(2195), 1, - sym_float, - STATE(1030), 1, - sym_identifier, - STATE(1040), 1, - sym__case_clause_guard_binary_expression, - STATE(1041), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(979), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1052), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [60686] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(702), 7, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - [60746] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(231), 1, - sym__name, - ACTIONS(233), 1, - sym__upname, - ACTIONS(972), 1, - anon_sym_BANG, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(2153), 1, - anon_sym_LBRACE, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2203), 1, - sym_float, - STATE(1026), 1, - sym_identifier, - STATE(1079), 1, - sym__case_clause_guard_binary_expression, - STATE(1080), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1042), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [60818] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(1954), 1, - anon_sym_DASH, - ACTIONS(1956), 1, - anon_sym_size, - ACTIONS(1962), 1, - anon_sym_unit, - STATE(1642), 1, - sym_constant_bit_string_segment_options, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1960), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1366), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1958), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [60874] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(710), 9, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - [60930] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(710), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_DOT_DOT, - [60988] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(484), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(482), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [61032] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(2141), 1, - anon_sym_LBRACE, - ACTIONS(2143), 1, - anon_sym_POUND, - ACTIONS(2145), 1, - anon_sym_LBRACK, - ACTIONS(2147), 1, - anon_sym_LT_LT, - ACTIONS(2149), 1, - anon_sym_DASH, - ACTIONS(2205), 1, - sym_float, - STATE(1030), 1, - sym_identifier, - STATE(1040), 1, - sym__case_clause_guard_binary_expression, - STATE(1041), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(979), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1043), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [61104] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(712), 6, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - ACTIONS(710), 18, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_DOT_DOT, - [61150] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(820), 1, - anon_sym_BANG, - ACTIONS(2141), 1, - anon_sym_LBRACE, - ACTIONS(2143), 1, - anon_sym_POUND, - ACTIONS(2145), 1, - anon_sym_LBRACK, - ACTIONS(2147), 1, - anon_sym_LT_LT, - ACTIONS(2149), 1, - anon_sym_DASH, - ACTIONS(2207), 1, - sym_float, - STATE(1030), 1, - sym_identifier, - STATE(1040), 1, - sym__case_clause_guard_binary_expression, - STATE(1041), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(979), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1054), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [61222] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(1954), 1, - anon_sym_DASH, - ACTIONS(1962), 1, - anon_sym_unit, - ACTIONS(2026), 1, - anon_sym_size, - STATE(1670), 1, - sym_pattern_bit_string_segment_options, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1960), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1379), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1958), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [61278] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(658), 7, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - [61338] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(722), 7, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - [61398] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(1954), 1, - anon_sym_DASH, - ACTIONS(1962), 1, - anon_sym_unit, - ACTIONS(2034), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1960), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1443), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1958), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [61451] = 20, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2022), 1, - sym_float, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1425), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(2209), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [61524] = 22, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2022), 1, - sym_float, - ACTIONS(2211), 1, - anon_sym_RBRACK, - ACTIONS(2213), 1, - anon_sym_DOT_DOT, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1284), 1, - sym__pattern, - STATE(1851), 1, - sym_list_pattern_tail, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [61601] = 22, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2022), 1, - sym_float, - ACTIONS(2213), 1, - anon_sym_DOT_DOT, - ACTIONS(2215), 1, - anon_sym_RBRACK, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1337), 1, - sym__pattern, - STATE(1879), 1, - sym_list_pattern_tail, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [61678] = 21, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - sym_float, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - ACTIONS(2217), 1, - anon_sym_if, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1284), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2219), 2, - anon_sym_DASH_GT, - anon_sym_PIPE, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1296), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [61753] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(1954), 1, - anon_sym_DASH, - ACTIONS(1956), 1, - anon_sym_size, - ACTIONS(1962), 1, - anon_sym_unit, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1960), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1535), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1958), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [61806] = 22, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - sym_float, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - ACTIONS(2221), 1, - anon_sym_if, - ACTIONS(2223), 1, - anon_sym_DASH_GT, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1345), 1, - sym__pattern, - STATE(1432), 1, - sym_case_clause_pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1296), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [61883] = 21, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - sym_float, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - ACTIONS(2225), 1, - anon_sym_if, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1284), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2227), 2, - anon_sym_DASH_GT, - anon_sym_PIPE, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1296), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [61958] = 22, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - sym_float, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - ACTIONS(2229), 1, - anon_sym_if, - ACTIONS(2231), 1, - anon_sym_DASH_GT, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1345), 1, - sym__pattern, - STATE(1432), 1, - sym_case_clause_pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1296), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [62035] = 22, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2233), 1, - anon_sym_LT_DASH, - ACTIONS(2235), 1, - sym_float, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1382), 1, - sym__pattern, - STATE(1492), 1, - sym_use_assignment, - STATE(1756), 1, - sym_use_assignments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1350), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [62112] = 22, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2022), 1, - sym_float, - ACTIONS(2213), 1, - anon_sym_DOT_DOT, - ACTIONS(2237), 1, - anon_sym_RBRACK, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1284), 1, - sym__pattern, - STATE(1752), 1, - sym_list_pattern_tail, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [62189] = 22, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2235), 1, - sym_float, - ACTIONS(2239), 1, - anon_sym_LT_DASH, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1382), 1, - sym__pattern, - STATE(1492), 1, - sym_use_assignment, - STATE(1877), 1, - sym_use_assignments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1350), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [62266] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(1954), 1, - anon_sym_DASH, - ACTIONS(1962), 1, - anon_sym_unit, - ACTIONS(2026), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1960), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1520), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1958), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [62319] = 21, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2022), 1, - sym_float, - ACTIONS(2241), 1, - anon_sym_GT_GT, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1515), 1, - sym__pattern, - STATE(1583), 1, - sym_pattern_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [62393] = 21, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2022), 1, - sym_float, - ACTIONS(2243), 1, - anon_sym_GT_GT, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1515), 1, - sym__pattern, - STATE(1672), 1, - sym_pattern_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [62467] = 21, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2235), 1, - sym_float, - ACTIONS(2245), 1, - anon_sym_LT_DASH, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1382), 1, - sym__pattern, - STATE(1666), 1, - sym_use_assignment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1350), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [62541] = 21, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2022), 1, - sym_float, - ACTIONS(2247), 1, - anon_sym_GT_GT, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1515), 1, - sym__pattern, - STATE(1672), 1, - sym_pattern_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [62615] = 21, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2022), 1, - sym_float, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1427), 1, - sym_record_pattern_argument, - STATE(1538), 1, - sym__pattern, - STATE(1828), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [62689] = 21, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2235), 1, - sym_float, - ACTIONS(2249), 1, - anon_sym_LT_DASH, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1382), 1, - sym__pattern, - STATE(1666), 1, - sym_use_assignment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1350), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [62763] = 21, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2022), 1, - sym_float, - ACTIONS(2251), 1, - anon_sym_assert, - STATE(783), 1, - sym__assignment, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1527), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [62837] = 21, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2022), 1, - sym_float, - ACTIONS(2253), 1, - anon_sym_assert, - STATE(1031), 1, - sym__assignment, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1414), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [62911] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2255), 1, - anon_sym_COMMA, - ACTIONS(2257), 1, - anon_sym_RBRACK, - ACTIONS(2259), 1, - anon_sym_DOT_DOT, - STATE(1389), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [62974] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2261), 1, - anon_sym_COMMA, - ACTIONS(2263), 1, - anon_sym_RBRACK, - ACTIONS(2265), 1, - anon_sym_DOT_DOT, - STATE(1380), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [63037] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2267), 1, - anon_sym_COMMA, - ACTIONS(2269), 1, - anon_sym_RBRACK, - ACTIONS(2271), 1, - anon_sym_DOT_DOT, - STATE(1354), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [63100] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2273), 1, - anon_sym_COMMA, - ACTIONS(2275), 1, - anon_sym_RBRACK, - ACTIONS(2277), 1, - anon_sym_DOT_DOT, - STATE(1399), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [63163] = 20, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2022), 1, - sym_float, - STATE(1015), 1, - sym__assignment, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1603), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [63234] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2279), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [63291] = 20, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2022), 1, - sym_float, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1515), 1, - sym__pattern, - STATE(1672), 1, - sym_pattern_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [63362] = 20, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2022), 1, - sym_float, - ACTIONS(2281), 1, - anon_sym_RPAREN, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1284), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [63433] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1828), 1, - anon_sym_LPAREN, - ACTIONS(2283), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(618), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(616), 17, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [63476] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1760), 1, - anon_sym_LPAREN, - ACTIONS(2285), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(600), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(598), 17, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [63519] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_COMMA, - ACTIONS(2289), 1, - anon_sym_RBRACK, - ACTIONS(2291), 1, - anon_sym_DOT_DOT, - STATE(1397), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [63582] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2293), 1, - anon_sym_COMMA, - ACTIONS(2295), 1, - anon_sym_RBRACK, - ACTIONS(2297), 1, - anon_sym_DOT_DOT, - STATE(1377), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [63645] = 20, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2022), 1, - sym_float, - ACTIONS(2299), 1, - anon_sym_RPAREN, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1284), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [63716] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - STATE(940), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(375), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(373), 17, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [63759] = 20, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - sym_float, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1345), 1, - sym__pattern, - STATE(1432), 1, - sym_case_clause_pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1296), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [63830] = 20, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2022), 1, - sym_float, - ACTIONS(2303), 1, - anon_sym_RPAREN, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1521), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [63901] = 20, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2235), 1, - sym_float, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1382), 1, - sym__pattern, - STATE(1666), 1, - sym_use_assignment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1350), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [63972] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2305), 1, - anon_sym_COMMA, - ACTIONS(2307), 1, - anon_sym_RBRACK, - ACTIONS(2309), 1, - anon_sym_DOT_DOT, - STATE(1388), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [64035] = 20, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2022), 1, - sym_float, - STATE(677), 1, - sym__assignment, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1539), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [64106] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(2311), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(459), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [64148] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(451), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2315), 1, - anon_sym_RPAREN, - ACTIONS(2317), 1, - sym_float, - STATE(1322), 1, - sym_identifier, - STATE(1725), 1, - sym_constant_record_argument, - STATE(1753), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1731), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [64214] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(451), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2317), 1, - sym_float, - ACTIONS(2319), 1, - anon_sym_RPAREN, - STATE(1322), 1, - sym_identifier, - STATE(1578), 1, - sym_constant_record_argument, - STATE(1753), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1731), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [64280] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2321), 1, - anon_sym_COMMA, - ACTIONS(2323), 1, - anon_sym_RPAREN, - STATE(1494), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [64340] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(451), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2325), 1, - anon_sym_RPAREN, - ACTIONS(2327), 1, - sym_float, - STATE(1322), 1, - sym_identifier, - STATE(1724), 1, - sym_attribute_value, - STATE(1812), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1689), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [64406] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2329), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(600), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(598), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [64448] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2333), 1, - anon_sym_LPAREN, - ACTIONS(2335), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(618), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(616), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [64490] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(476), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(474), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [64528] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(484), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(482), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [64566] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(409), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(407), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [64604] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2337), 1, - anon_sym_COMMA, - ACTIONS(2339), 1, - anon_sym_RPAREN, - STATE(1558), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [64664] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(465), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(459), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [64706] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(451), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2327), 1, - sym_float, - ACTIONS(2341), 1, - anon_sym_RPAREN, - STATE(1322), 1, - sym_identifier, - STATE(1724), 1, - sym_attribute_value, - STATE(1812), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1689), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [64772] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(385), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(383), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [64810] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(506), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(504), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [64848] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(514), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(512), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [64886] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2343), 1, - anon_sym_LBRACE, - ACTIONS(2345), 1, - anon_sym_COMMA, - ACTIONS(2351), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2353), 1, - anon_sym_AMP_AMP, - ACTIONS(2361), 1, - anon_sym_PIPE_GT, - STATE(1557), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2347), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2349), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2355), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2363), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2357), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2359), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2365), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [64946] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2367), 1, - anon_sym_COMMA, - ACTIONS(2369), 1, - anon_sym_RPAREN, - STATE(1523), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [65006] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(451), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2317), 1, - sym_float, - ACTIONS(2371), 1, - anon_sym_RPAREN, - STATE(1322), 1, - sym_identifier, - STATE(1725), 1, - sym_constant_record_argument, - STATE(1753), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1731), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [65072] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2373), 1, - anon_sym_COMMA, - ACTIONS(2375), 1, - anon_sym_RPAREN, - STATE(1418), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [65132] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(451), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2317), 1, - sym_float, - ACTIONS(2377), 1, - anon_sym_RPAREN, - STATE(1322), 1, - sym_identifier, - STATE(1725), 1, - sym_constant_record_argument, - STATE(1753), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1731), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [65198] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(393), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(391), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [65236] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(451), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2317), 1, - sym_float, - ACTIONS(2379), 1, - anon_sym_RPAREN, - STATE(1322), 1, - sym_identifier, - STATE(1497), 1, - sym_constant_record_argument, - STATE(1753), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1731), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [65302] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(451), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2317), 1, - sym_float, - ACTIONS(2381), 1, - anon_sym_RPAREN, - STATE(1322), 1, - sym_identifier, - STATE(1725), 1, - sym_constant_record_argument, - STATE(1753), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1731), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [65368] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - sym_float, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1284), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1296), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [65436] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(389), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(387), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [65474] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(451), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2327), 1, - sym_float, - ACTIONS(2383), 1, - anon_sym_RPAREN, - STATE(1322), 1, - sym_identifier, - STATE(1724), 1, - sym_attribute_value, - STATE(1812), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1689), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [65540] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(397), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(395), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [65578] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(401), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(399), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [65616] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(405), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(403), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [65654] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(451), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2317), 1, - sym_float, - ACTIONS(2385), 1, - anon_sym_RPAREN, - STATE(1322), 1, - sym_identifier, - STATE(1483), 1, - sym_constant_record_argument, - STATE(1753), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1731), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [65720] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(451), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2327), 1, - sym_float, - ACTIONS(2387), 1, - anon_sym_RPAREN, - STATE(1322), 1, - sym_identifier, - STATE(1724), 1, - sym_attribute_value, - STATE(1812), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1689), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [65786] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(496), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(494), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [65824] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(510), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(508), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [65862] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(524), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(522), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [65900] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2022), 1, - sym_float, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - STATE(1284), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1241), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [65968] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(451), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2317), 1, - sym_float, - ACTIONS(2389), 1, - anon_sym_RPAREN, - STATE(1322), 1, - sym_identifier, - STATE(1725), 1, - sym_constant_record_argument, - STATE(1753), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1731), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [66034] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2391), 1, - anon_sym_COMMA, - ACTIONS(2393), 1, - anon_sym_RPAREN, - STATE(1447), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [66094] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2395), 1, - anon_sym_COMMA, - ACTIONS(2397), 1, - anon_sym_RPAREN, - STATE(1551), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [66154] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2399), 1, - anon_sym_COMMA, - ACTIONS(2401), 1, - anon_sym_RPAREN, - STATE(1591), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [66214] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(451), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2317), 1, - sym_float, - ACTIONS(2403), 1, - anon_sym_RPAREN, - STATE(1322), 1, - sym_identifier, - STATE(1725), 1, - sym_constant_record_argument, - STATE(1753), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1731), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [66280] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(528), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(526), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [66318] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(455), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(453), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [66356] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(596), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(594), 17, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [66393] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(451), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2317), 1, - sym_float, - STATE(1322), 1, - sym_identifier, - STATE(1725), 1, - sym_constant_record_argument, - STATE(1753), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1731), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [66456] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2405), 1, - sym_float, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1187), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [66521] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2409), 1, - sym_float, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2407), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1733), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [66582] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2411), 1, - anon_sym_GT_GT, - ACTIONS(2413), 1, - sym_float, - STATE(1322), 1, - sym_identifier, - STATE(1637), 1, - sym_constant_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1574), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [66645] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2347), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2349), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2363), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(712), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2365), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 11, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - [66690] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(628), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(626), 17, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [66727] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2347), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2365), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(712), 6, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - ACTIONS(710), 13, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - [66768] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2351), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2353), 1, - anon_sym_AMP_AMP, - ACTIONS(2361), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(702), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2347), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2349), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2355), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2363), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2357), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2359), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2365), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [66823] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(608), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(606), 17, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [66860] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2351), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2353), 1, - anon_sym_AMP_AMP, - ACTIONS(2361), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2279), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2347), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2349), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2355), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2363), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2357), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2359), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2365), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [66915] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(451), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2327), 1, - sym_float, - STATE(1322), 1, - sym_identifier, - STATE(1724), 1, - sym_attribute_value, - STATE(1812), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1689), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [66978] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(451), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2327), 1, - sym_float, - STATE(1322), 1, - sym_identifier, - STATE(1441), 1, - sym_attribute_value, - STATE(1812), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1689), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [67041] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2413), 1, - sym_float, - ACTIONS(2415), 1, - anon_sym_GT_GT, - STATE(1322), 1, - sym_identifier, - STATE(1637), 1, - sym_constant_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1574), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [67104] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2417), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [67159] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(636), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(634), 17, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [67196] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2413), 1, - sym_float, - ACTIONS(2419), 1, - anon_sym_GT_GT, - STATE(1322), 1, - sym_identifier, - STATE(1460), 1, - sym_constant_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1574), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [67259] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(451), 1, - sym__upname, - ACTIONS(826), 1, - sym__name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2327), 1, - sym_float, - STATE(1322), 1, - sym_identifier, - STATE(1533), 1, - sym_attribute_value, - STATE(1812), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1689), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [67322] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2421), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [67377] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2405), 1, - sym_float, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1233), 1, - sym_identifier, - STATE(1265), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1187), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [67442] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2413), 1, - sym_float, - ACTIONS(2423), 1, - anon_sym_GT_GT, - STATE(1322), 1, - sym_identifier, - STATE(1637), 1, - sym_constant_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1574), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [67505] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2413), 1, - sym_float, - ACTIONS(2425), 1, - anon_sym_GT_GT, - STATE(1322), 1, - sym_identifier, - STATE(1637), 1, - sym_constant_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1574), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [67568] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2427), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [67623] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(632), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(630), 17, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [67660] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2413), 1, - sym_float, - ACTIONS(2429), 1, - anon_sym_GT_GT, - STATE(1322), 1, - sym_identifier, - STATE(1568), 1, - sym_constant_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1574), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [67723] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1792), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_LBRACK, - ACTIONS(1796), 1, - anon_sym_LT_LT, - ACTIONS(1798), 1, - anon_sym_DASH, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1806), 1, - sym__decimal, - ACTIONS(1808), 1, - sym__discard_name, - ACTIONS(1810), 1, - sym__name, - ACTIONS(1812), 1, - sym__upname, - ACTIONS(2405), 1, - sym_float, - STATE(1194), 1, - sym__pattern_binary_expression, - STATE(1263), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1113), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1804), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1187), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [67788] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(642), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(459), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [67827] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2413), 1, - sym_float, - ACTIONS(2431), 1, - anon_sym_GT_GT, - STATE(1322), 1, - sym_identifier, - STATE(1637), 1, - sym_constant_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1574), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [67890] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(648), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(459), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [67929] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2413), 1, - sym_float, - ACTIONS(2433), 1, - anon_sym_GT_GT, - STATE(1322), 1, - sym_identifier, - STATE(1576), 1, - sym_constant_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1574), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [67992] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(463), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(461), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(459), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [68031] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2361), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2347), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2349), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2363), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(712), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2365), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 10, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [68078] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2361), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2347), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2349), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2363), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2357), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2359), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2365), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [68127] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2361), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2347), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2349), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2355), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2363), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(710), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(2357), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2359), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2365), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [68178] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2353), 1, - anon_sym_AMP_AMP, - ACTIONS(2361), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2347), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2349), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2355), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2363), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(710), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - ACTIONS(2357), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2359), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2365), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [68231] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(640), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(638), 17, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [68268] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2351), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2353), 1, - anon_sym_AMP_AMP, - ACTIONS(2361), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(658), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2347), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2349), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2355), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2363), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2357), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2359), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2365), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [68323] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(592), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(590), 17, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [68360] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(614), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(612), 17, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [68397] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2351), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2353), 1, - anon_sym_AMP_AMP, - ACTIONS(2361), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(722), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2347), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2349), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2355), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2363), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2357), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2359), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2365), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [68452] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2413), 1, - sym_float, - ACTIONS(2435), 1, - anon_sym_GT_GT, - STATE(1322), 1, - sym_identifier, - STATE(1637), 1, - sym_constant_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1574), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [68515] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2437), 1, - anon_sym_RPAREN, - ACTIONS(2439), 1, - sym_float, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1517), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [68575] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2441), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [68629] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2443), 1, - anon_sym_RPAREN, - ACTIONS(2445), 1, - sym_float, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1417), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [68689] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2445), 1, - sym_float, - ACTIONS(2447), 1, - anon_sym_RPAREN, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1417), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [68749] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(658), 1, - anon_sym_DASH_GT, - ACTIONS(2453), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2463), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2449), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2451), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2457), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2465), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2459), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2461), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2467), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [68803] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2413), 1, - sym_float, - STATE(1322), 1, - sym_identifier, - STATE(1637), 1, - sym_constant_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1574), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [68863] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(754), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(752), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [68899] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(738), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(736), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [68935] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2469), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [68989] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2445), 1, - sym_float, - ACTIONS(2471), 1, - anon_sym_RPAREN, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1417), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [69049] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(708), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(706), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [69085] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(712), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(710), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [69121] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2449), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2467), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(712), 6, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - ACTIONS(710), 12, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - [69161] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2463), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(710), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - ACTIONS(2449), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2451), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2457), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2465), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2459), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2461), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2467), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [69213] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(716), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(714), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [69249] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(702), 1, - anon_sym_DASH_GT, - ACTIONS(2453), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2463), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2449), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2451), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2457), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2465), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2459), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2461), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2467), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [69303] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(700), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(698), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [69339] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(767), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(764), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [69375] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(688), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(686), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [69411] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(692), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(690), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [69447] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2463), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2449), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2451), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2457), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2465), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(710), 3, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(2459), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2461), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2467), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [69497] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2473), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [69551] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2463), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2449), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2451), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2465), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2459), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2461), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2467), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 5, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [69599] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2463), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2449), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2451), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2465), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(712), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2467), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 9, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [69645] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2475), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [69699] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2449), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2451), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2465), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(712), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2467), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(710), 10, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - [69743] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(712), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(710), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [69779] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2445), 1, - sym_float, - ACTIONS(2477), 1, - anon_sym_RBRACK, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1417), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [69839] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2479), 1, - anon_sym_RBRACK, - ACTIONS(2481), 1, - sym_float, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1572), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [69899] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2483), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [69953] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2485), 1, - anon_sym_RBRACK, - ACTIONS(2487), 1, - sym_float, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1567), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [70013] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2489), 1, - anon_sym_RPAREN, - ACTIONS(2491), 1, - sym_float, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1477), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [70073] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2493), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [70127] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2495), 1, - anon_sym_LPAREN, - STATE(1048), 1, - sym_constant_record_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1576), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1572), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [70167] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2497), 1, - anon_sym_RPAREN, - ACTIONS(2499), 1, - sym_float, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1573), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [70227] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2501), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [70281] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2445), 1, - sym_float, - ACTIONS(2503), 1, - anon_sym_RBRACK, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1417), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [70341] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2445), 1, - sym_float, - ACTIONS(2505), 1, - anon_sym_RBRACK, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1417), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [70401] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(684), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(682), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [70437] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2507), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [70491] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2445), 1, - sym_float, - ACTIONS(2509), 1, - anon_sym_RPAREN, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1417), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [70551] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2445), 1, - sym_float, - ACTIONS(2511), 1, - anon_sym_RBRACK, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1417), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [70611] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(720), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(718), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [70647] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2445), 1, - sym_float, - ACTIONS(2513), 1, - anon_sym_RPAREN, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1417), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [70707] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2445), 1, - sym_float, - ACTIONS(2515), 1, - anon_sym_RPAREN, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1417), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [70767] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2517), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [70821] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2519), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [70875] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(722), 1, - anon_sym_DASH_GT, - ACTIONS(2453), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2463), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2449), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2451), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2457), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2465), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2459), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2461), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2467), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [70929] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(696), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(694), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [70965] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2521), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [71019] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2523), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [71073] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2525), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [71127] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2527), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [71181] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(656), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(654), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [71217] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2529), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [71271] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2531), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [71325] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2533), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [71379] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2535), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [71433] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(734), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(732), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [71469] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2537), 1, - anon_sym_RBRACK, - ACTIONS(2539), 1, - sym_float, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1459), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [71529] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2541), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [71583] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2543), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [71637] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2545), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [71691] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2547), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [71745] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2549), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [71799] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(772), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(770), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [71835] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2445), 1, - sym_float, - ACTIONS(2551), 1, - anon_sym_RBRACK, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1417), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [71895] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2445), 1, - sym_float, - ACTIONS(2553), 1, - anon_sym_RBRACK, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1417), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [71955] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(762), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(760), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [71991] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2555), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1834), 11, - anon_sym_DASH, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym__decimal, - sym__name, - ACTIONS(1832), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [72029] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2557), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [72083] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2559), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [72137] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2561), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [72191] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2563), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [72245] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(652), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(650), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [72281] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(758), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(756), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [72317] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2565), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [72371] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(742), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(740), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [72407] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_PIPE_GT, - ACTIONS(2197), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_AMP_AMP, - ACTIONS(2567), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2177), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2181), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2191), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2193), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [72461] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2569), 1, - sym_float, - STATE(1234), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1262), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [72518] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2571), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2573), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(2576), 14, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [72555] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(2579), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - anon_sym_LBRACK, - ACTIONS(2583), 1, - anon_sym_LT_LT, - ACTIONS(2585), 1, - anon_sym_DASH, - ACTIONS(2587), 1, - sym_float, - STATE(665), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(652), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(744), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [72612] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2589), 1, - sym_float, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1729), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [72669] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(2579), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - anon_sym_LBRACK, - ACTIONS(2583), 1, - anon_sym_LT_LT, - ACTIONS(2585), 1, - anon_sym_DASH, - ACTIONS(2591), 1, - sym_float, - STATE(665), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(652), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(742), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [72726] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2593), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2573), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(2576), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [72763] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2113), 11, - anon_sym_DASH, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym__decimal, - sym__name, - ACTIONS(2111), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [72798] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2595), 1, - sym_float, - STATE(1234), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1254), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [72855] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2597), 1, - sym_float, - STATE(1234), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1253), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [72912] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(2579), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - anon_sym_LBRACK, - ACTIONS(2583), 1, - anon_sym_LT_LT, - ACTIONS(2585), 1, - anon_sym_DASH, - ACTIONS(2599), 1, - sym_float, - STATE(665), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(652), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(779), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [72969] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(449), 1, - sym__name, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2445), 1, - sym_float, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1417), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [73026] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(2018), 1, - anon_sym_DASH, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LT_LT, - ACTIONS(2601), 1, - sym_float, - STATE(1234), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(559), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1260), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [73083] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(2579), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - anon_sym_LBRACK, - ACTIONS(2583), 1, - anon_sym_LT_LT, - ACTIONS(2585), 1, - anon_sym_DASH, - ACTIONS(2603), 1, - sym_float, - STATE(665), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(652), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(760), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [73140] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1610), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1608), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [73174] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2611), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2605), 2, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - ACTIONS(2607), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2609), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2613), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2619), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2621), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2615), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2617), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [73222] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2625), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(2623), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [73256] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2629), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(2627), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [73290] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2631), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2633), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2637), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2639), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2635), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2605), 9, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [73332] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2611), 1, - anon_sym_AMP_AMP, - ACTIONS(2641), 1, - anon_sym_RBRACE, - ACTIONS(2643), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2607), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2609), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2613), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2619), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2621), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2615), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2617), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [73382] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2647), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(2645), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [73416] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2635), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(2605), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [73450] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1684), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1682), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [73484] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1680), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1678), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [73518] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1622), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1620), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [73552] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2607), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2621), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2635), 6, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - ACTIONS(2605), 11, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - [73590] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2607), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2609), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2613), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2619), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2605), 3, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(2621), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2615), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2617), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [73636] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2607), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2609), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2619), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2621), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2615), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2617), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2605), 5, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [73680] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2607), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2609), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2619), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2621), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2635), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2605), 9, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [73722] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2651), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(2649), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [73756] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2611), 1, - anon_sym_AMP_AMP, - ACTIONS(2643), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2607), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2609), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2613), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2619), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2621), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2615), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2617), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [73806] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1668), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1666), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [73840] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1664), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1662), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [73874] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1660), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1658), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [73908] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1588), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1586), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [73942] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1644), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1642), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [73976] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2635), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(2605), 14, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [74010] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2631), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2639), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2635), 6, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - ACTIONS(2605), 11, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - [74048] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2647), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(2645), 14, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [74082] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1656), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1654), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [74116] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1648), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1646), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [74150] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1618), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1616), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [74184] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1626), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1624), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [74218] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2655), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2605), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - ACTIONS(2631), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2633), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2637), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2657), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2639), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2659), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2661), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [74266] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2631), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2633), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2637), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2657), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2605), 3, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(2639), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2659), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2661), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [74312] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2631), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2633), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2637), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2639), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2659), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2661), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2605), 5, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [74356] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1614), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1612), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [74390] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1636), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1634), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [74424] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1640), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1638), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [74458] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1652), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1650), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [74492] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1676), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1674), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [74526] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(381), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(379), 21, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [74560] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2651), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(2649), 14, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [74594] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2103), 22, - anon_sym_if, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [74626] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2655), 1, - anon_sym_AMP_AMP, - ACTIONS(2663), 1, - anon_sym_DASH_GT, - ACTIONS(2665), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2631), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2633), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2637), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2657), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2639), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2659), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2661), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [74676] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2625), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(2623), 14, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [74710] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2629), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(2627), 14, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [74744] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2667), 1, - anon_sym_RBRACE, - ACTIONS(2669), 1, - anon_sym_AT, - ACTIONS(2671), 1, - anon_sym_import, - ACTIONS(2673), 1, - anon_sym_type, - ACTIONS(2675), 1, - anon_sym_const, - ACTIONS(2677), 1, - anon_sym_fn, - ACTIONS(2679), 1, - anon_sym_external, - ACTIONS(2681), 1, - sym_visibility_modifier, - ACTIONS(2683), 1, - sym_opacity_modifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1083), 10, - sym__module_statement, - sym_attribute, - sym_import, - sym_constant, - sym_external_type, - sym_external_function, - sym_function, - sym_type_definition, - sym_type_alias, - aux_sym_target_group_repeat1, - [74791] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2685), 1, - anon_sym_RBRACE, - ACTIONS(2687), 1, - anon_sym_AT, - ACTIONS(2690), 1, - anon_sym_import, - ACTIONS(2693), 1, - anon_sym_type, - ACTIONS(2696), 1, - anon_sym_const, - ACTIONS(2699), 1, - anon_sym_fn, - ACTIONS(2702), 1, - anon_sym_external, - ACTIONS(2705), 1, - sym_visibility_modifier, - ACTIONS(2708), 1, - sym_opacity_modifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1082), 10, - sym__module_statement, - sym_attribute, - sym_import, - sym_constant, - sym_external_type, - sym_external_function, - sym_function, - sym_type_definition, - sym_type_alias, - aux_sym_target_group_repeat1, - [74838] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2669), 1, - anon_sym_AT, - ACTIONS(2671), 1, - anon_sym_import, - ACTIONS(2673), 1, - anon_sym_type, - ACTIONS(2675), 1, - anon_sym_const, - ACTIONS(2677), 1, - anon_sym_fn, - ACTIONS(2679), 1, - anon_sym_external, - ACTIONS(2681), 1, - sym_visibility_modifier, - ACTIONS(2683), 1, - sym_opacity_modifier, - ACTIONS(2711), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1082), 10, - sym__module_statement, - sym_attribute, - sym_import, - sym_constant, - sym_external_type, - sym_external_function, - sym_function, - sym_type_definition, - sym_type_alias, - aux_sym_target_group_repeat1, - [74885] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2713), 1, - anon_sym_RPAREN, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2721), 1, - sym__name, - ACTIONS(2723), 1, - sym__upname, - STATE(1739), 1, - sym_data_constructor_argument, - STATE(1765), 1, - sym_label, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1710), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [74932] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2721), 1, - sym__name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2725), 1, - anon_sym_RPAREN, - STATE(1476), 1, - sym_data_constructor_argument, - STATE(1765), 1, - sym_label, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1710), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [74979] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2721), 1, - sym__name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2727), 1, - anon_sym_RPAREN, - STATE(1739), 1, - sym_data_constructor_argument, - STATE(1765), 1, - sym_label, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1710), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [75026] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(482), 2, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(1872), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [75054] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2729), 1, - anon_sym_RPAREN, - ACTIONS(2731), 1, - sym__name, - STATE(1715), 1, - sym_type_argument, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1728), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [75098] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2721), 1, - sym__name, - ACTIONS(2723), 1, - sym__upname, - STATE(1739), 1, - sym_data_constructor_argument, - STATE(1765), 1, - sym_label, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1710), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [75142] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - ACTIONS(2733), 1, - anon_sym_RPAREN, - STATE(1715), 1, - sym_type_argument, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1728), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [75186] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - ACTIONS(2735), 1, - anon_sym_RPAREN, - STATE(1570), 1, - sym_external_function_parameter, - STATE(1640), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1639), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [75230] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - ACTIONS(2737), 1, - anon_sym_RPAREN, - STATE(1633), 1, - sym_external_function_parameter, - STATE(1640), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1639), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [75274] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1742), 16, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [75300] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - ACTIONS(2739), 1, - anon_sym_RPAREN, - STATE(1468), 1, - sym_type_argument, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1728), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [75344] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - ACTIONS(2741), 1, - anon_sym_RPAREN, - STATE(1715), 1, - sym_type_argument, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1728), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [75388] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - ACTIONS(2743), 1, - anon_sym_RPAREN, - STATE(1715), 1, - sym_type_argument, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1728), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [75432] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2745), 1, - anon_sym_LPAREN, - STATE(1133), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1722), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [75462] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - ACTIONS(2747), 1, - anon_sym_RPAREN, - STATE(1487), 1, - sym_type_argument, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1728), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [75506] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - ACTIONS(2749), 1, - anon_sym_RPAREN, - STATE(1633), 1, - sym_external_function_parameter, - STATE(1640), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1639), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [75550] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1633), 1, - sym_external_function_parameter, - STATE(1640), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1639), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [75591] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - ACTIONS(2751), 1, - anon_sym_RPAREN, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1486), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [75632] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - ACTIONS(2753), 1, - anon_sym_RPAREN, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1745), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [75673] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1714), 15, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [75698] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - ACTIONS(2755), 1, - anon_sym_RPAREN, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1745), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [75739] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2757), 1, - anon_sym_RPAREN, - ACTIONS(2759), 1, - anon_sym_POUND, - ACTIONS(2761), 1, - anon_sym_fn, - STATE(1681), 1, - sym_constant_type_argument, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1333), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1711), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [75782] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2759), 1, - anon_sym_POUND, - ACTIONS(2761), 1, - anon_sym_fn, - ACTIONS(2763), 1, - anon_sym_RPAREN, - STATE(1681), 1, - sym_constant_type_argument, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1333), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1711), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [75825] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - ACTIONS(2765), 1, - anon_sym_RPAREN, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1475), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [75866] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - ACTIONS(2767), 1, - anon_sym_RPAREN, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1409), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [75907] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - ACTIONS(2769), 1, - anon_sym_RPAREN, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1745), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [75948] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2759), 1, - anon_sym_POUND, - ACTIONS(2761), 1, - anon_sym_fn, - ACTIONS(2771), 1, - anon_sym_RPAREN, - STATE(1453), 1, - sym_constant_type_argument, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1333), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1711), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [75991] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - ACTIONS(2773), 1, - anon_sym_RPAREN, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1745), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76032] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - ACTIONS(2775), 1, - anon_sym_RPAREN, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1745), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76073] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2779), 1, - anon_sym_LPAREN, - STATE(1190), 1, - sym_record_pattern_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2777), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [76102] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1715), 1, - sym_type_argument, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1728), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76143] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - ACTIONS(2781), 1, - anon_sym_RPAREN, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1745), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76184] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2783), 1, - anon_sym_POUND, - ACTIONS(2785), 1, - anon_sym_fn, - ACTIONS(2787), 1, - sym__discard_name, - ACTIONS(2789), 1, - sym__name, - ACTIONS(2791), 1, - sym__upname, - STATE(1847), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(651), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(675), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76222] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1745), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76260] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1401), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76298] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1204), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76336] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1787), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76374] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1645), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76412] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1261), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76450] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2783), 1, - anon_sym_POUND, - ACTIONS(2785), 1, - anon_sym_fn, - ACTIONS(2787), 1, - sym__discard_name, - ACTIONS(2789), 1, - sym__name, - ACTIONS(2791), 1, - sym__upname, - STATE(1847), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(651), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(789), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76488] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1641), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76526] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2759), 1, - anon_sym_POUND, - ACTIONS(2761), 1, - anon_sym_fn, - ACTIONS(2793), 1, - anon_sym_RPAREN, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1333), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1463), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [76566] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2759), 1, - anon_sym_POUND, - ACTIONS(2761), 1, - anon_sym_fn, - STATE(1681), 1, - sym_constant_type_argument, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1333), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1711), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [76606] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1827), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76644] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2759), 1, - anon_sym_POUND, - ACTIONS(2761), 1, - anon_sym_fn, - ACTIONS(2795), 1, - anon_sym_RPAREN, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1333), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1461), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [76684] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1651), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76722] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1663), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76760] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2000), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [76784] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1783), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76822] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1992), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [76846] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1737), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76884] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1216), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76922] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1703), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76960] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2783), 1, - anon_sym_POUND, - ACTIONS(2785), 1, - anon_sym_fn, - ACTIONS(2787), 1, - sym__discard_name, - ACTIONS(2789), 1, - sym__name, - ACTIONS(2791), 1, - sym__upname, - STATE(1847), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(651), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(777), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [76998] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1140), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [77036] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1709), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [77074] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2127), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [77098] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2783), 1, - anon_sym_POUND, - ACTIONS(2785), 1, - anon_sym_fn, - ACTIONS(2787), 1, - sym__discard_name, - ACTIONS(2789), 1, - sym__name, - ACTIONS(2791), 1, - sym__upname, - STATE(1847), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(651), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(716), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [77136] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1255), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [77174] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1153), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [77212] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2131), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [77236] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2783), 1, - anon_sym_POUND, - ACTIONS(2785), 1, - anon_sym_fn, - ACTIONS(2787), 1, - sym__discard_name, - ACTIONS(2789), 1, - sym__name, - ACTIONS(2791), 1, - sym__upname, - STATE(1847), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(651), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(750), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [77274] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2119), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [77298] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2759), 1, - anon_sym_POUND, - ACTIONS(2761), 1, - anon_sym_fn, - ACTIONS(2797), 1, - anon_sym_RPAREN, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1333), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1744), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [77338] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2759), 1, - anon_sym_POUND, - ACTIONS(2761), 1, - anon_sym_fn, - ACTIONS(2799), 1, - anon_sym_RPAREN, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1333), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1744), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [77378] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1743), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [77416] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2783), 1, - anon_sym_POUND, - ACTIONS(2785), 1, - anon_sym_fn, - ACTIONS(2787), 1, - sym__discard_name, - ACTIONS(2789), 1, - sym__name, - ACTIONS(2791), 1, - sym__upname, - STATE(1847), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(651), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(691), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [77454] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1930), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [77478] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1251), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [77516] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1926), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [77540] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1922), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [77564] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2783), 1, - anon_sym_POUND, - ACTIONS(2785), 1, - anon_sym_fn, - ACTIONS(2787), 1, - sym__discard_name, - ACTIONS(2789), 1, - sym__name, - ACTIONS(2791), 1, - sym__upname, - STATE(1847), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(651), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(740), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [77602] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2759), 1, - anon_sym_POUND, - ACTIONS(2761), 1, - anon_sym_fn, - ACTIONS(2801), 1, - anon_sym_RPAREN, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1333), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1744), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [77642] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1984), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [77666] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1623), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [77704] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1948), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [77728] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1914), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [77752] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_fn, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2731), 1, - sym__name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1097), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1785), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [77790] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2759), 1, - anon_sym_POUND, - ACTIONS(2761), 1, - anon_sym_fn, - ACTIONS(2803), 1, - anon_sym_RPAREN, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1333), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1744), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [77830] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1976), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [77854] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2805), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [77877] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2759), 1, - anon_sym_POUND, - ACTIONS(2761), 1, - anon_sym_fn, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1333), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1552), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [77914] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2807), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [77937] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2809), 1, - anon_sym_LPAREN, - STATE(1219), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1703), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [77964] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2811), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [77987] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2813), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78010] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2815), 1, - anon_sym_SLASH, - STATE(1175), 1, - aux_sym_module_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1693), 11, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [78037] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2817), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78060] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2819), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78083] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2759), 1, - anon_sym_POUND, - ACTIONS(2761), 1, - anon_sym_fn, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1333), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1859), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [78120] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2821), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78143] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2823), 1, - anon_sym_SLASH, - STATE(1175), 1, - aux_sym_module_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1686), 11, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [78170] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2826), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78193] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2759), 1, - anon_sym_POUND, - ACTIONS(2761), 1, - anon_sym_fn, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1333), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1744), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [78230] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2828), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78253] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2830), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78276] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2832), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78299] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2834), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78322] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2836), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78345] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2838), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78368] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2840), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78391] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2719), 1, - sym__discard_name, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2759), 1, - anon_sym_POUND, - ACTIONS(2761), 1, - anon_sym_fn, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1333), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1458), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [78428] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2842), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78451] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2844), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78474] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2844), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78497] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2846), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78520] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2848), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78543] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2850), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78566] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2852), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78589] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2828), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78612] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2854), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78635] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2815), 1, - anon_sym_SLASH, - STATE(1170), 1, - aux_sym_module_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1699), 11, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [78662] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2856), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78685] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2858), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78708] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2860), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78731] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2834), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [78754] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2862), 1, - anon_sym_DASH_GT, - STATE(1266), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1736), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [78782] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2864), 1, - anon_sym_LPAREN, - STATE(1235), 1, - sym__attribute_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1730), 10, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - sym__upname, - [78808] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2866), 1, - anon_sym_DASH_GT, - STATE(1240), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1754), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [78836] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1688), 1, - anon_sym_SLASH, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1686), 11, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [78860] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(1264), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1882), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [78885] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2868), 1, - anon_sym_RPAREN, - ACTIONS(2870), 1, - sym__discard_name, - ACTIONS(2872), 1, - sym__name, - STATE(1387), 1, - sym_label, - STATE(1390), 1, - sym__name_param, - STATE(1394), 1, - sym__labeled_discard_param, - STATE(1404), 1, - sym__labeled_name_param, - STATE(1405), 1, - sym__discard_param, - STATE(1547), 1, - sym_identifier, - STATE(1549), 1, - sym_discard, - STATE(1684), 1, - sym_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [78926] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2874), 1, - anon_sym_DOT, - ACTIONS(2876), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1746), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [78951] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1858), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [78972] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2870), 1, - sym__discard_name, - ACTIONS(2872), 1, - sym__name, - ACTIONS(2878), 1, - anon_sym_RPAREN, - STATE(1387), 1, - sym_label, - STATE(1390), 1, - sym__name_param, - STATE(1394), 1, - sym__labeled_discard_param, - STATE(1404), 1, - sym__labeled_name_param, - STATE(1405), 1, - sym__discard_param, - STATE(1547), 1, - sym_identifier, - STATE(1549), 1, - sym_discard, - STATE(1684), 1, - sym_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [79013] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1774), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79034] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2880), 11, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [79055] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2884), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1782), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79080] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1876), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79101] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1890), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79122] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1852), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79143] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1902), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79164] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(1256), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1824), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79189] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2870), 1, - sym__discard_name, - ACTIONS(2872), 1, - sym__name, - ACTIONS(2886), 1, - anon_sym_RPAREN, - STATE(1387), 1, - sym_label, - STATE(1390), 1, - sym__name_param, - STATE(1394), 1, - sym__labeled_discard_param, - STATE(1404), 1, - sym__labeled_name_param, - STATE(1405), 1, - sym__discard_param, - STATE(1424), 1, - sym_function_parameter, - STATE(1547), 1, - sym_identifier, - STATE(1549), 1, - sym_discard, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [79230] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1894), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79251] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1816), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79272] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2870), 1, - sym__discard_name, - ACTIONS(2872), 1, - sym__name, - ACTIONS(2888), 1, - anon_sym_RPAREN, - STATE(1387), 1, - sym_label, - STATE(1390), 1, - sym__name_param, - STATE(1394), 1, - sym__labeled_discard_param, - STATE(1404), 1, - sym__labeled_name_param, - STATE(1405), 1, - sym__discard_param, - STATE(1547), 1, - sym_identifier, - STATE(1549), 1, - sym_discard, - STATE(1684), 1, - sym_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [79313] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2870), 1, - sym__discard_name, - ACTIONS(2872), 1, - sym__name, - ACTIONS(2890), 1, - anon_sym_RPAREN, - STATE(1387), 1, - sym_label, - STATE(1390), 1, - sym__name_param, - STATE(1394), 1, - sym__labeled_discard_param, - STATE(1404), 1, - sym__labeled_name_param, - STATE(1405), 1, - sym__discard_param, - STATE(1547), 1, - sym_identifier, - STATE(1549), 1, - sym_discard, - STATE(1684), 1, - sym_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [79354] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2892), 1, - anon_sym_LBRACE, - ACTIONS(2894), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1842), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79379] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2870), 1, - sym__discard_name, - ACTIONS(2872), 1, - sym__name, - ACTIONS(2896), 1, - anon_sym_RPAREN, - STATE(1387), 1, - sym_label, - STATE(1390), 1, - sym__name_param, - STATE(1394), 1, - sym__labeled_discard_param, - STATE(1404), 1, - sym__labeled_name_param, - STATE(1405), 1, - sym__discard_param, - STATE(1452), 1, - sym_function_parameter, - STATE(1547), 1, - sym_identifier, - STATE(1549), 1, - sym_discard, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [79420] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1770), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79441] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1868), 10, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79461] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2115), 10, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - sym__upname, - [79481] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1938), 10, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - sym__upname, - [79501] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1886), 10, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79521] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2870), 1, - sym__discard_name, - ACTIONS(2872), 1, - sym__name, - STATE(1387), 1, - sym_label, - STATE(1390), 1, - sym__name_param, - STATE(1394), 1, - sym__labeled_discard_param, - STATE(1404), 1, - sym__labeled_name_param, - STATE(1405), 1, - sym__discard_param, - STATE(1547), 1, - sym_identifier, - STATE(1549), 1, - sym_discard, - STATE(1684), 1, - sym_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [79559] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1898), 10, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79579] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1778), 10, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79599] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(233), 1, - sym__upname, - ACTIONS(2898), 1, - anon_sym_DASH, - ACTIONS(2900), 1, - sym__name, - STATE(589), 1, - sym_label, - STATE(891), 1, - sym_constructor_name, - STATE(1076), 1, - sym_integer, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - [79633] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2904), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2902), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [79655] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2906), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1764), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79677] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2095), 10, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - sym__upname, - [79697] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1918), 10, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - sym__upname, - [79717] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(2908), 1, - anon_sym_DASH, - ACTIONS(2910), 1, - sym__name, - STATE(549), 1, - sym_constructor_name, - STATE(1053), 1, - sym_integer, - STATE(1058), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - [79751] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2912), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1862), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79773] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1964), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79792] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2107), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79811] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2916), 1, - anon_sym_as, - ACTIONS(2918), 1, - anon_sym_LT_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2914), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - [79834] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(1954), 1, - anon_sym_DASH, - ACTIONS(2920), 1, - sym__name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1775), 3, - sym__pattern_bit_string_segment_argument, - sym_integer, - sym_identifier, - [79861] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(407), 9, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [79880] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(482), 9, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [79899] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1842), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79918] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2008), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79937] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2048), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79956] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2137), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79975] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2012), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [79994] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2042), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [80013] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2091), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [80032] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1934), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [80051] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2028), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [80070] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2099), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [80089] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1996), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [80108] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2123), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [80127] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2004), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [80146] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(403), 9, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [80165] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1910), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [80184] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1972), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [80203] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1968), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [80222] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1980), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [80241] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2922), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2902), 8, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [80262] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1944), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [80281] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2924), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2902), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [80302] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1906), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [80321] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2870), 1, - sym__discard_name, - ACTIONS(2926), 1, - anon_sym_RPAREN, - STATE(1375), 1, - sym__name_param, - STATE(1402), 1, - sym__discard_param, - STATE(1547), 1, - sym_identifier, - STATE(1549), 1, - sym_discard, - STATE(1611), 1, - sym_anonymous_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [80353] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(474), 8, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [80371] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(714), 8, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [80389] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2870), 1, - sym__discard_name, - ACTIONS(2928), 1, - anon_sym_RPAREN, - STATE(1375), 1, - sym__name_param, - STATE(1402), 1, - sym__discard_param, - STATE(1547), 1, - sym_identifier, - STATE(1549), 1, - sym_discard, - STATE(1611), 1, - sym_anonymous_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [80421] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2930), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2902), 7, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [80441] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(706), 8, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [80459] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2870), 1, - sym__discard_name, - ACTIONS(2932), 1, - anon_sym_RPAREN, - STATE(1375), 1, - sym__name_param, - STATE(1402), 1, - sym__discard_param, - STATE(1543), 1, - sym_anonymous_function_parameter, - STATE(1547), 1, - sym_identifier, - STATE(1549), 1, - sym_discard, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [80491] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2934), 1, - anon_sym_AT, - STATE(1336), 1, - sym_constructor_name, - STATE(1699), 1, - sym_attribute, - STATE(1805), 1, - sym_data_constructors, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1283), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [80518] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(2936), 1, - anon_sym_RBRACE, - ACTIONS(2938), 1, - anon_sym_type, - STATE(1588), 1, - sym_identifier, - STATE(1589), 1, - sym_constructor_name, - STATE(1631), 1, - sym_unqualified_import, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [80547] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2870), 1, - sym__discard_name, - STATE(1375), 1, - sym__name_param, - STATE(1402), 1, - sym__discard_param, - STATE(1547), 1, - sym_identifier, - STATE(1549), 1, - sym_discard, - STATE(1611), 1, - sym_anonymous_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [80576] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2934), 1, - anon_sym_AT, - STATE(1336), 1, - sym_constructor_name, - STATE(1699), 1, - sym_attribute, - STATE(1803), 1, - sym_data_constructors, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1283), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [80603] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(2938), 1, - anon_sym_type, - ACTIONS(2940), 1, - anon_sym_RBRACE, - STATE(1588), 1, - sym_identifier, - STATE(1589), 1, - sym_constructor_name, - STATE(1631), 1, - sym_unqualified_import, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [80632] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2942), 1, - anon_sym_RBRACE, - ACTIONS(2944), 1, - anon_sym_AT, - ACTIONS(2947), 1, - sym__upname, - STATE(1336), 1, - sym_constructor_name, - STATE(1699), 1, - sym_attribute, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1279), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [80659] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2934), 1, - anon_sym_AT, - STATE(1336), 1, - sym_constructor_name, - STATE(1699), 1, - sym_attribute, - STATE(1768), 1, - sym_data_constructors, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1283), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [80686] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(2938), 1, - anon_sym_type, - ACTIONS(2950), 1, - anon_sym_RBRACE, - STATE(1588), 1, - sym_identifier, - STATE(1589), 1, - sym_constructor_name, - STATE(1631), 1, - sym_unqualified_import, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [80715] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2934), 1, - anon_sym_AT, - STATE(1336), 1, - sym_constructor_name, - STATE(1699), 1, - sym_attribute, - STATE(1790), 1, - sym_data_constructors, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1283), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [80742] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2934), 1, - anon_sym_AT, - ACTIONS(2952), 1, - anon_sym_RBRACE, - STATE(1336), 1, - sym_constructor_name, - STATE(1699), 1, - sym_attribute, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1279), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [80769] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2954), 7, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [80786] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(2938), 1, - anon_sym_type, - ACTIONS(2956), 1, - anon_sym_RBRACE, - STATE(1588), 1, - sym_identifier, - STATE(1589), 1, - sym_constructor_name, - STATE(1631), 1, - sym_unqualified_import, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [80815] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2934), 1, - anon_sym_AT, - STATE(1336), 1, - sym_constructor_name, - STATE(1699), 1, - sym_attribute, - STATE(1754), 1, - sym_data_constructors, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1283), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [80842] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(451), 1, - sym__upname, - ACTIONS(2934), 1, - anon_sym_AT, - STATE(1336), 1, - sym_constructor_name, - STATE(1699), 1, - sym_attribute, - STATE(1860), 1, - sym_data_constructors, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1283), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [80869] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(2938), 1, - anon_sym_type, - ACTIONS(2958), 1, - anon_sym_RBRACE, - STATE(1465), 1, - sym_unqualified_import, - STATE(1588), 1, - sym_identifier, - STATE(1589), 1, - sym_constructor_name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [80898] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(2938), 1, - anon_sym_type, - ACTIONS(2960), 1, - anon_sym_RBRACE, - STATE(1587), 1, - sym_unqualified_import, - STATE(1588), 1, - sym_identifier, - STATE(1589), 1, - sym_constructor_name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [80927] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(2938), 1, - anon_sym_type, - STATE(1588), 1, - sym_identifier, - STATE(1589), 1, - sym_constructor_name, - STATE(1631), 1, - sym_unqualified_import, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [80953] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(1954), 1, - anon_sym_DASH, - STATE(1801), 1, - sym_integer, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - [80975] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2962), 1, - anon_sym_DQUOTE2, - ACTIONS(2966), 1, - sym_quoted_content, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2964), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1323), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [80997] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2968), 1, - anon_sym_DQUOTE2, - ACTIONS(2970), 1, - sym_quoted_content, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2964), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1321), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [81019] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2972), 1, - anon_sym_DQUOTE2, - ACTIONS(2974), 1, - sym_quoted_content, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2964), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1298), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [81041] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2976), 1, - anon_sym_DQUOTE2, - ACTIONS(2978), 1, - sym_quoted_content, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2964), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1292), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [81063] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2980), 1, - anon_sym_as, - ACTIONS(2982), 1, - anon_sym_LT_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2914), 4, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_PIPE, - [81083] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2920), 1, - sym__name, - STATE(1211), 1, - sym_type_name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1167), 2, - sym_type_identifier, - sym_remote_type_identifier, - [81107] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2966), 1, - sym_quoted_content, - ACTIONS(2984), 1, - anon_sym_DQUOTE2, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2964), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1323), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [81129] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2966), 1, - sym_quoted_content, - ACTIONS(2986), 1, - anon_sym_DQUOTE2, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2964), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1323), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [81151] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2988), 1, - anon_sym_DQUOTE2, - ACTIONS(2990), 1, - sym_quoted_content, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2964), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1299), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [81173] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1110), 1, - sym__decimal, - ACTIONS(2992), 1, - anon_sym_DASH, - STATE(567), 1, - sym_integer, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1108), 3, - sym__hex, - sym__octal, - sym__binary, - [81195] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2791), 1, - sym__upname, - ACTIONS(2920), 1, - sym__name, - STATE(770), 1, - sym_type_name, - STATE(1847), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(641), 2, - sym_type_identifier, - sym_remote_type_identifier, - [81219] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1040), 1, - sym__decimal, - ACTIONS(2994), 1, - anon_sym_DASH, - STATE(268), 1, - sym_integer, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1038), 3, - sym__hex, - sym__octal, - sym__binary, - [81241] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2920), 1, - sym__name, - STATE(1247), 1, - sym_type_name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1167), 2, - sym_type_identifier, - sym_remote_type_identifier, - [81265] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2791), 1, - sym__upname, - ACTIONS(2920), 1, - sym__name, - STATE(771), 1, - sym_type_name, - STATE(1847), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(641), 2, - sym_type_identifier, - sym_remote_type_identifier, - [81289] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2920), 1, - sym__name, - STATE(1748), 1, - sym_type_name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1167), 2, - sym_type_identifier, - sym_remote_type_identifier, - [81313] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(1954), 1, - anon_sym_DASH, - STATE(207), 1, - sym_integer, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - [81335] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(229), 1, - sym__decimal, - ACTIONS(2898), 1, - anon_sym_DASH, - STATE(887), 1, - sym_integer, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(227), 3, - sym__hex, - sym__octal, - sym__binary, - [81357] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2920), 1, - sym__name, - STATE(1712), 1, - sym_type_name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1167), 2, - sym_type_identifier, - sym_remote_type_identifier, - [81381] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2920), 1, - sym__name, - STATE(1671), 1, - sym_type_name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1167), 2, - sym_type_identifier, - sym_remote_type_identifier, - [81405] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(2908), 1, - anon_sym_DASH, - STATE(646), 1, - sym_integer, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - [81427] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(2996), 1, - anon_sym_DASH, - STATE(207), 1, - sym_integer, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - [81449] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2966), 1, - sym_quoted_content, - ACTIONS(2998), 1, - anon_sym_DQUOTE2, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2964), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1323), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [81471] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2920), 1, - sym__name, - STATE(1222), 1, - sym_type_name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1167), 2, - sym_type_identifier, - sym_remote_type_identifier, - [81495] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2791), 1, - sym__upname, - ACTIONS(2920), 1, - sym__name, - STATE(669), 1, - sym_type_name, - STATE(1847), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(641), 2, - sym_type_identifier, - sym_remote_type_identifier, - [81519] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2920), 1, - sym__name, - STATE(1245), 1, - sym_type_name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1167), 2, - sym_type_identifier, - sym_remote_type_identifier, - [81543] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(3000), 1, - anon_sym_DASH, - STATE(82), 1, - sym_integer, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - [81565] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3002), 1, - anon_sym_DQUOTE2, - ACTIONS(3004), 1, - sym_quoted_content, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2964), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1320), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [81587] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3006), 1, - anon_sym_DQUOTE2, - ACTIONS(3008), 1, - sym_quoted_content, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2964), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1330), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [81609] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2966), 1, - sym_quoted_content, - ACTIONS(3010), 1, - anon_sym_DQUOTE2, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2964), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1323), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [81631] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2966), 1, - sym_quoted_content, - ACTIONS(3012), 1, - anon_sym_DQUOTE2, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2964), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1323), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [81653] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3014), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1764), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - [81671] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3016), 1, - anon_sym_DQUOTE2, - ACTIONS(3021), 1, - sym_quoted_content, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3018), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1323), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [81693] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1076), 1, - sym__decimal, - ACTIONS(3024), 1, - anon_sym_DASH, - STATE(17), 1, - sym_integer, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1074), 3, - sym__hex, - sym__octal, - sym__binary, - [81715] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3026), 1, - anon_sym_DQUOTE2, - ACTIONS(3028), 1, - sym_quoted_content, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2964), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1313), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [81737] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2791), 1, - sym__upname, - ACTIONS(2920), 1, - sym__name, - STATE(680), 1, - sym_type_name, - STATE(1847), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(641), 2, - sym_type_identifier, - sym_remote_type_identifier, - [81761] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2723), 1, - sym__upname, - ACTIONS(2920), 1, - sym__name, - STATE(1620), 1, - sym_type_name, - STATE(1770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1167), 2, - sym_type_identifier, - sym_remote_type_identifier, - [81785] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - sym__decimal, - ACTIONS(1954), 1, - anon_sym_DASH, - STATE(1822), 1, - sym_integer, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(445), 3, - sym__hex, - sym__octal, - sym__binary, - [81807] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2966), 1, - sym_quoted_content, - ACTIONS(3030), 1, - anon_sym_DQUOTE2, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2964), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1323), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [81829] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2966), 1, - sym_quoted_content, - ACTIONS(3032), 1, - anon_sym_DQUOTE2, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2964), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1323), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [81851] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3034), 1, - anon_sym_DQUOTE2, - ACTIONS(3036), 1, - sym_quoted_content, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2964), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1329), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [81873] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2020), 1, - anon_sym_DOT_DOT, - ACTIONS(3038), 1, - anon_sym_COMMA, - ACTIONS(3040), 1, - anon_sym_RPAREN, - STATE(1341), 1, - aux_sym_record_pattern_arguments_repeat1, - STATE(1815), 1, - sym_pattern_spread, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [81896] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3042), 1, - anon_sym_LPAREN, - STATE(1602), 1, - sym_constant_type_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3044), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [81915] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1142), 1, - anon_sym_LPAREN, - ACTIONS(1830), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(616), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT_GT, - [81934] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2870), 1, - sym__discard_name, - ACTIONS(3046), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1798), 2, - sym_identifier, - sym_discard, - [81955] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3050), 1, - anon_sym_LPAREN, - STATE(1595), 1, - sym_data_constructor_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3048), 3, - anon_sym_RBRACE, - anon_sym_AT, - sym__upname, - [81974] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2213), 1, - anon_sym_DOT_DOT, - ACTIONS(3052), 1, - anon_sym_COMMA, - ACTIONS(3054), 1, - anon_sym_RBRACK, - STATE(1344), 1, - aux_sym_case_clause_pattern_repeat1, - STATE(1811), 1, - sym_list_pattern_tail, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [81997] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3056), 1, - anon_sym_type, - ACTIONS(3058), 1, - anon_sym_const, - ACTIONS(3060), 1, - anon_sym_fn, - ACTIONS(3062), 1, - anon_sym_external, - ACTIONS(3064), 1, - sym_opacity_modifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82020] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3066), 1, - anon_sym_COMMA, - STATE(1339), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2279), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [82039] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - sym__discard_name, - ACTIONS(393), 1, - sym__name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(482), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [82058] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2020), 1, - anon_sym_DOT_DOT, - ACTIONS(2089), 1, - anon_sym_RPAREN, - ACTIONS(3069), 1, - anon_sym_COMMA, - STATE(1353), 1, - aux_sym_record_pattern_arguments_repeat1, - STATE(1858), 1, - sym_pattern_spread, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82081] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3073), 1, - anon_sym_COMMA, - STATE(1342), 1, - aux_sym_case_clause_pattern_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3071), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [82100] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1126), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(598), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT_GT, - [82119] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2213), 1, - anon_sym_DOT_DOT, - ACTIONS(3076), 1, - anon_sym_COMMA, - ACTIONS(3078), 1, - anon_sym_RBRACK, - STATE(1349), 1, - aux_sym_case_clause_pattern_repeat1, - STATE(1837), 1, - sym_list_pattern_tail, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82142] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3082), 1, - anon_sym_COMMA, - STATE(1348), 1, - aux_sym_case_clause_pattern_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3080), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [82161] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3050), 1, - anon_sym_LPAREN, - STATE(1480), 1, - sym_data_constructor_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3084), 3, - anon_sym_RBRACE, - anon_sym_AT, - sym__upname, - [82180] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3086), 1, - anon_sym_type, - ACTIONS(3088), 1, - anon_sym_const, - ACTIONS(3090), 1, - anon_sym_fn, - ACTIONS(3092), 1, - anon_sym_external, - ACTIONS(3094), 1, - sym_opacity_modifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82203] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3098), 1, - anon_sym_COMMA, - STATE(1342), 1, - aux_sym_case_clause_pattern_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3096), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [82222] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3100), 1, - anon_sym_COMMA, - STATE(1349), 1, - aux_sym_case_clause_pattern_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3071), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [82241] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2980), 1, - anon_sym_as, - ACTIONS(3103), 1, - anon_sym_LT_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2914), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, - [82260] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3107), 1, - sym__decimal, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3105), 3, - sym__hex, - sym__octal, - sym__binary, - [82276] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3111), 1, - sym__decimal, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3109), 3, - sym__hex, - sym__octal, - sym__binary, - [82292] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3113), 1, - anon_sym_COMMA, - STATE(1353), 1, - aux_sym_record_pattern_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3116), 2, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [82310] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(892), 1, - anon_sym_RBRACK, - ACTIONS(894), 1, - anon_sym_DOT_DOT, - ACTIONS(3118), 1, - anon_sym_COMMA, - STATE(1339), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82330] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(99), 1, - sym__name, - ACTIONS(2870), 1, - sym__discard_name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1249), 2, - sym_identifier, - sym_discard, - [82348] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3120), 4, - sym_quoted_content, - anon_sym_DQUOTE2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - [82362] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(63), 1, - sym__upname, - ACTIONS(3122), 1, - sym__name, - STATE(61), 1, - sym_constructor_name, - STATE(747), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82382] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - anon_sym_COLON, - ACTIONS(482), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1872), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [82400] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3124), 1, - anon_sym_PIPE, - STATE(1403), 1, - aux_sym_case_clause_patterns_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2231), 2, - anon_sym_if, - anon_sym_DASH_GT, - [82418] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3128), 1, - anon_sym_PIPE, - STATE(1359), 1, - aux_sym_case_clause_patterns_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3126), 2, - anon_sym_if, - anon_sym_DASH_GT, - [82436] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2920), 1, - sym__name, - ACTIONS(3130), 1, - anon_sym_LPAREN, - STATE(1440), 1, - sym_anonymous_function_parameters, - STATE(1683), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82456] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3134), 1, - sym__decimal, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3132), 3, - sym__hex, - sym__octal, - sym__binary, - [82472] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(451), 1, - sym__upname, - ACTIONS(3136), 1, - sym__name, - STATE(172), 1, - sym_constructor_name, - STATE(589), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82492] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3140), 1, - sym__decimal, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3138), 3, - sym__hex, - sym__octal, - sym__binary, - [82508] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3136), 1, - sym__name, - STATE(1422), 1, - sym_record_update_argument, - STATE(1829), 1, - sym_record_update_arguments, - STATE(1867), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82528] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3144), 1, - anon_sym_DASH, - STATE(1396), 1, - aux_sym_constant_bit_string_segment_options_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3142), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [82546] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3136), 1, - sym__name, - STATE(1422), 1, - sym_record_update_argument, - STATE(1789), 1, - sym_record_update_arguments, - STATE(1867), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82566] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(99), 1, - sym__name, - ACTIONS(2870), 1, - sym__discard_name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1250), 2, - sym_identifier, - sym_discard, - [82584] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(61), 1, - sym__name, - ACTIONS(3146), 1, - sym__discard_name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(768), 2, - sym_identifier, - sym_discard, - [82602] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3150), 1, - sym__decimal, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3148), 3, - sym__hex, - sym__octal, - sym__binary, - [82618] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3136), 1, - sym__name, - ACTIONS(3152), 1, - anon_sym_RPAREN, - STATE(1668), 1, - sym_record_update_argument, - STATE(1867), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82638] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3136), 1, - sym__name, - STATE(1422), 1, - sym_record_update_argument, - STATE(1865), 1, - sym_record_update_arguments, - STATE(1867), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82658] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(61), 1, - sym__name, - ACTIONS(3146), 1, - sym__discard_name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(755), 2, - sym_identifier, - sym_discard, - [82676] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3136), 1, - sym__name, - STATE(1422), 1, - sym_record_update_argument, - STATE(1867), 1, - sym_label, - STATE(1884), 1, - sym_record_update_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82696] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3156), 1, - anon_sym_COLON, - STATE(1707), 1, - sym__type_annotation, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3154), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [82714] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3160), 1, - anon_sym_DASH, - STATE(1376), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3158), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [82732] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(914), 1, - anon_sym_RBRACK, - ACTIONS(916), 1, - anon_sym_DOT_DOT, - ACTIONS(3163), 1, - anon_sym_COMMA, - STATE(1339), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82752] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3136), 1, - sym__name, - STATE(1422), 1, - sym_record_update_argument, - STATE(1867), 1, - sym_label, - STATE(1880), 1, - sym_record_update_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82772] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3167), 1, - anon_sym_DASH, - STATE(1385), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3165), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [82790] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(910), 1, - anon_sym_RBRACK, - ACTIONS(912), 1, - anon_sym_DOT_DOT, - ACTIONS(3169), 1, - anon_sym_COMMA, - STATE(1339), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82810] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3173), 1, - anon_sym_DASH, - STATE(1381), 1, - aux_sym_constant_bit_string_segment_options_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3171), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [82828] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3156), 1, - anon_sym_COLON, - STATE(1606), 1, - sym__type_annotation, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3176), 2, - anon_sym_COMMA, - anon_sym_LT_DASH, - [82846] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3178), 1, - anon_sym_DASH, - STATE(1398), 1, - aux_sym_expression_bit_string_segment_options_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2032), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [82864] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3182), 1, - anon_sym_DASH, - STATE(1383), 1, - aux_sym_expression_bit_string_segment_options_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3180), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [82882] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3184), 1, - anon_sym_DASH, - STATE(1376), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2024), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [82900] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(101), 1, - sym__upname, - ACTIONS(2910), 1, - sym__name, - STATE(549), 1, - sym_constructor_name, - STATE(589), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82920] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(449), 1, - sym__name, - ACTIONS(2870), 1, - sym__discard_name, - STATE(1579), 1, - sym_discard, - STATE(1580), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82940] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(922), 1, - anon_sym_RBRACK, - ACTIONS(924), 1, - anon_sym_DOT_DOT, - ACTIONS(3186), 1, - anon_sym_COMMA, - STATE(1339), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82960] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(938), 1, - anon_sym_RBRACK, - ACTIONS(940), 1, - anon_sym_DOT_DOT, - ACTIONS(3188), 1, - anon_sym_COMMA, - STATE(1339), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [82980] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3156), 1, - anon_sym_COLON, - STATE(1697), 1, - sym__type_annotation, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3190), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [82998] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3136), 1, - sym__name, - STATE(1422), 1, - sym_record_update_argument, - STATE(1764), 1, - sym_record_update_arguments, - STATE(1867), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83018] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3136), 1, - sym__name, - STATE(1422), 1, - sym_record_update_argument, - STATE(1759), 1, - sym_record_update_arguments, - STATE(1867), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83038] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3194), 1, - sym__decimal, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3192), 3, - sym__hex, - sym__octal, - sym__binary, - [83054] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3156), 1, - anon_sym_COLON, - STATE(1622), 1, - sym__type_annotation, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3196), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [83072] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3200), 1, - sym__decimal, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3198), 3, - sym__hex, - sym__octal, - sym__binary, - [83088] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3202), 1, - anon_sym_DASH, - STATE(1381), 1, - aux_sym_constant_bit_string_segment_options_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2046), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [83106] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(942), 1, - anon_sym_RBRACK, - ACTIONS(944), 1, - anon_sym_DOT_DOT, - ACTIONS(3204), 1, - anon_sym_COMMA, - STATE(1339), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83126] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3208), 1, - anon_sym_DASH, - STATE(1398), 1, - aux_sym_expression_bit_string_segment_options_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3206), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [83144] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(934), 1, - anon_sym_RBRACK, - ACTIONS(936), 1, - anon_sym_DOT_DOT, - ACTIONS(3211), 1, - anon_sym_COMMA, - STATE(1339), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83164] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3213), 1, - anon_sym_COMMA, - STATE(1400), 1, - aux_sym_constant_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3216), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [83182] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3218), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_DASH, - [83196] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3156), 1, - anon_sym_COLON, - STATE(1604), 1, - sym__type_annotation, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3154), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [83214] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3222), 1, - anon_sym_PIPE, - STATE(1403), 1, - aux_sym_case_clause_patterns_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3220), 2, - anon_sym_if, - anon_sym_DASH_GT, - [83232] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3156), 1, - anon_sym_COLON, - STATE(1628), 1, - sym__type_annotation, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3196), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [83250] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3156), 1, - anon_sym_COLON, - STATE(1627), 1, - sym__type_annotation, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3190), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [83268] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3227), 1, - sym__decimal, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3225), 3, - sym__hex, - sym__octal, - sym__binary, - [83284] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3136), 1, - sym__name, - ACTIONS(3229), 1, - anon_sym_RPAREN, - STATE(1668), 1, - sym_record_update_argument, - STATE(1867), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83304] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3231), 1, - anon_sym_COMMA, - ACTIONS(3234), 1, - anon_sym_RPAREN, - STATE(1408), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83321] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3236), 1, - anon_sym_COMMA, - ACTIONS(3238), 1, - anon_sym_RPAREN, - STATE(1436), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83338] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3240), 1, - anon_sym_COLON, - ACTIONS(3242), 1, - anon_sym_EQ, - STATE(1866), 1, - sym__constant_type_annotation, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83355] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3244), 1, - anon_sym_COMMA, - ACTIONS(3246), 1, - anon_sym_GT_GT, - STATE(1426), 1, - aux_sym__expression_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83372] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - ACTIONS(3248), 1, - anon_sym_DASH_GT, - STATE(221), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83389] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3250), 1, - anon_sym_RBRACE, - ACTIONS(3252), 1, - anon_sym_COMMA, - STATE(1413), 1, - aux_sym_unqualified_imports_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83406] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3156), 1, - anon_sym_COLON, - ACTIONS(3255), 1, - anon_sym_EQ, - STATE(1839), 1, - sym__type_annotation, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83423] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2403), 1, - anon_sym_RPAREN, - ACTIONS(3257), 1, - anon_sym_COMMA, - STATE(1501), 1, - aux_sym_constant_record_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83440] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3259), 1, - anon_sym_COMMA, - ACTIONS(3262), 1, - anon_sym_GT_GT, - STATE(1416), 1, - aux_sym__constant_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83457] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3216), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [83470] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1010), 1, - anon_sym_RPAREN, - ACTIONS(3264), 1, - anon_sym_COMMA, - STATE(1339), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83487] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2515), 1, - anon_sym_RPAREN, - ACTIONS(3266), 1, - anon_sym_COMMA, - STATE(1400), 1, - aux_sym_constant_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83504] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3268), 3, - anon_sym_RBRACE, - anon_sym_AT, - sym__upname, - [83517] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3270), 1, - anon_sym_RPAREN, - ACTIONS(3272), 1, - sym__name, - STATE(1445), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83534] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3274), 1, - anon_sym_COMMA, - ACTIONS(3276), 1, - anon_sym_RPAREN, - STATE(1507), 1, - aux_sym_record_update_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83551] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3278), 1, - anon_sym_COMMA, - ACTIONS(3281), 1, - anon_sym_RPAREN, - STATE(1423), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83568] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3283), 1, - anon_sym_COMMA, - ACTIONS(3285), 1, - anon_sym_RPAREN, - STATE(1585), 1, - aux_sym_function_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83585] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3287), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [83598] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1418), 1, - anon_sym_GT_GT, - ACTIONS(3289), 1, - anon_sym_COMMA, - STATE(1473), 1, - aux_sym__expression_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83615] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3116), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [83628] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2727), 1, - anon_sym_RPAREN, - ACTIONS(3291), 1, - anon_sym_COMMA, - STATE(1491), 1, - aux_sym_data_constructor_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83645] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2279), 1, - anon_sym_LBRACE, - ACTIONS(3293), 1, - anon_sym_COMMA, - STATE(1429), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83662] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3296), 1, - anon_sym_LPAREN, - ACTIONS(3298), 1, - anon_sym_DASH_GT, - STATE(1875), 1, - sym_constant_function_parameter_types, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83679] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2769), 1, - anon_sym_RPAREN, - ACTIONS(3300), 1, - anon_sym_COMMA, - STATE(1423), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83696] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3220), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [83709] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3240), 1, - anon_sym_COLON, - ACTIONS(3302), 1, - anon_sym_EQ, - STATE(1814), 1, - sym__constant_type_annotation, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83726] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3306), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3304), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [83741] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3240), 1, - anon_sym_COLON, - ACTIONS(3308), 1, - anon_sym_EQ, - STATE(1786), 1, - sym__constant_type_annotation, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83758] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2753), 1, - anon_sym_RPAREN, - ACTIONS(3310), 1, - anon_sym_COMMA, - STATE(1423), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83775] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3312), 1, - anon_sym_COMMA, - ACTIONS(3314), 1, - anon_sym_GT_GT, - STATE(1542), 1, - aux_sym__expression_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83792] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3316), 1, - anon_sym_COMMA, - ACTIONS(3318), 1, - anon_sym_RPAREN, - STATE(1457), 1, - aux_sym_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83809] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2737), 1, - anon_sym_RPAREN, - ACTIONS(3320), 1, - anon_sym_COMMA, - STATE(1571), 1, - aux_sym_external_function_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83826] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(3322), 1, - anon_sym_DASH_GT, - STATE(96), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83843] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3324), 1, - anon_sym_COMMA, - ACTIONS(3326), 1, - anon_sym_RPAREN, - STATE(1462), 1, - aux_sym__attribute_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83860] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3328), 1, - anon_sym_COMMA, - ACTIONS(3331), 1, - anon_sym_RPAREN, - STATE(1442), 1, - aux_sym_function_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83877] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3206), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [83890] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3333), 1, - anon_sym_LPAREN, - ACTIONS(3335), 1, - anon_sym_DASH_GT, - STATE(1777), 1, - sym_function_parameter_types, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83907] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3337), 1, - anon_sym_COMMA, - ACTIONS(3339), 1, - anon_sym_RPAREN, - STATE(1470), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83924] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3341), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [83937] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1046), 1, - anon_sym_RPAREN, - ACTIONS(3343), 1, - anon_sym_COMMA, - STATE(1339), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83954] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3345), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [83967] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3347), 1, - anon_sym_COMMA, - ACTIONS(3349), 1, - anon_sym_RPAREN, - STATE(1599), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [83984] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3136), 1, - sym__name, - STATE(1668), 1, - sym_record_update_argument, - STATE(1867), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84001] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3351), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [84014] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3353), 1, - anon_sym_COMMA, - ACTIONS(3355), 1, - anon_sym_RPAREN, - STATE(1474), 1, - aux_sym_function_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84031] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3357), 1, - anon_sym_COMMA, - ACTIONS(3359), 1, - anon_sym_RPAREN, - STATE(1569), 1, - aux_sym_constant_type_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84048] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3361), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [84061] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3363), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [84074] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3333), 1, - anon_sym_LPAREN, - ACTIONS(3365), 1, - anon_sym_DASH_GT, - STATE(1891), 1, - sym_function_parameter_types, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84091] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(872), 1, - anon_sym_RPAREN, - ACTIONS(3367), 1, - anon_sym_COMMA, - STATE(1519), 1, - aux_sym_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84108] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3369), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [84121] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3371), 1, - anon_sym_COMMA, - ACTIONS(3373), 1, - anon_sym_RBRACK, - STATE(1479), 1, - aux_sym_constant_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84138] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3375), 1, - anon_sym_COMMA, - ACTIONS(3377), 1, - anon_sym_GT_GT, - STATE(1481), 1, - aux_sym__constant_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84155] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3379), 1, - anon_sym_COMMA, - ACTIONS(3381), 1, - anon_sym_RPAREN, - STATE(1530), 1, - aux_sym_constant_tuple_type_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84172] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2387), 1, - anon_sym_RPAREN, - ACTIONS(3383), 1, - anon_sym_COMMA, - STATE(1503), 1, - aux_sym__attribute_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84189] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3385), 1, - anon_sym_COMMA, - ACTIONS(3387), 1, - anon_sym_RPAREN, - STATE(1518), 1, - aux_sym_constant_tuple_type_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84206] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3389), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [84219] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3391), 1, - anon_sym_RBRACE, - ACTIONS(3393), 1, - anon_sym_COMMA, - STATE(1485), 1, - aux_sym_unqualified_imports_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84236] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3395), 1, - anon_sym_COMMA, - ACTIONS(3398), 1, - anon_sym_RPAREN, - STATE(1466), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84253] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3272), 1, - sym__name, - ACTIONS(3400), 1, - anon_sym_RPAREN, - STATE(1722), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84270] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3402), 1, - anon_sym_COMMA, - ACTIONS(3404), 1, - anon_sym_RPAREN, - STATE(1506), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84287] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3272), 1, - sym__name, - ACTIONS(3406), 1, - anon_sym_RPAREN, - STATE(1722), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84304] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3406), 1, - anon_sym_RPAREN, - ACTIONS(3408), 1, - anon_sym_COMMA, - STATE(1466), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84321] = 4, - ACTIONS(3), 1, - sym_module_comment, - STATE(1850), 1, - sym_target, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3410), 2, - anon_sym_erlang, - anon_sym_javascript, - [84336] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3412), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [84349] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3414), 1, - anon_sym_COMMA, - ACTIONS(3417), 1, - anon_sym_GT_GT, - STATE(1473), 1, - aux_sym__expression_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84366] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2878), 1, - anon_sym_RPAREN, - ACTIONS(3419), 1, - anon_sym_COMMA, - STATE(1442), 1, - aux_sym_function_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84383] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3421), 1, - anon_sym_COMMA, - ACTIONS(3423), 1, - anon_sym_RPAREN, - STATE(1431), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84400] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3425), 1, - anon_sym_COMMA, - ACTIONS(3427), 1, - anon_sym_RPAREN, - STATE(1428), 1, - aux_sym_data_constructor_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84417] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3429), 1, - anon_sym_COMMA, - ACTIONS(3431), 1, - anon_sym_RPAREN, - STATE(1495), 1, - aux_sym_constant_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84434] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3433), 3, - anon_sym_RBRACE, - anon_sym_AT, - sym__upname, - [84447] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2477), 1, - anon_sym_RBRACK, - ACTIONS(3435), 1, - anon_sym_COMMA, - STATE(1400), 1, - aux_sym_constant_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84464] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3437), 3, - anon_sym_RBRACE, - anon_sym_AT, - sym__upname, - [84477] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2431), 1, - anon_sym_GT_GT, - ACTIONS(3439), 1, - anon_sym_COMMA, - STATE(1416), 1, - aux_sym__constant_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84494] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2936), 1, - anon_sym_RBRACE, - ACTIONS(3441), 1, - anon_sym_COMMA, - STATE(1413), 1, - aux_sym_unqualified_imports_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84511] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3443), 1, - anon_sym_COMMA, - ACTIONS(3445), 1, - anon_sym_RPAREN, - STATE(1499), 1, - aux_sym_constant_record_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84528] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3449), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3447), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [84543] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2950), 1, - anon_sym_RBRACE, - ACTIONS(3451), 1, - anon_sym_COMMA, - STATE(1413), 1, - aux_sym_unqualified_imports_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84560] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3455), 1, - anon_sym_RPAREN, - STATE(1502), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84577] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3457), 1, - anon_sym_COMMA, - ACTIONS(3459), 1, - anon_sym_RPAREN, - STATE(1504), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84594] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3272), 1, - sym__name, - ACTIONS(3461), 1, - anon_sym_RPAREN, - STATE(1722), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84611] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(858), 1, - anon_sym_RPAREN, - ACTIONS(3463), 1, - anon_sym_COMMA, - STATE(1519), 1, - aux_sym_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84628] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2926), 1, - anon_sym_RPAREN, - ACTIONS(3465), 1, - anon_sym_COMMA, - STATE(1590), 1, - aux_sym_anonymous_function_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84645] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3467), 1, - anon_sym_COMMA, - ACTIONS(3470), 1, - anon_sym_RPAREN, - STATE(1491), 1, - aux_sym_data_constructor_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84662] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3472), 1, - anon_sym_COMMA, - ACTIONS(3474), 1, - anon_sym_LT_DASH, - STATE(1597), 1, - aux_sym_use_assignments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84679] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3476), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [84692] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1004), 1, - anon_sym_RPAREN, - ACTIONS(3478), 1, - anon_sym_COMMA, - STATE(1339), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84709] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2443), 1, - anon_sym_RPAREN, - ACTIONS(3480), 1, - anon_sym_COMMA, - STATE(1400), 1, - aux_sym_constant_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84726] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3482), 3, - anon_sym_RBRACE, - anon_sym_AT, - sym__upname, - [84739] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3484), 1, - anon_sym_COMMA, - ACTIONS(3486), 1, - anon_sym_RPAREN, - STATE(1415), 1, - aux_sym_constant_record_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84756] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3488), 1, - anon_sym_COMMA, - ACTIONS(3490), 1, - anon_sym_RPAREN, - STATE(1489), 1, - aux_sym_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84773] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2377), 1, - anon_sym_RPAREN, - ACTIONS(3492), 1, - anon_sym_COMMA, - STATE(1501), 1, - aux_sym_constant_record_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84790] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1282), 1, - anon_sym_GT_GT, - ACTIONS(3494), 1, - anon_sym_COMMA, - STATE(1473), 1, - aux_sym__expression_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84807] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3496), 1, - anon_sym_COMMA, - ACTIONS(3499), 1, - anon_sym_RPAREN, - STATE(1501), 1, - aux_sym_constant_record_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84824] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2781), 1, - anon_sym_RPAREN, - ACTIONS(3501), 1, - anon_sym_COMMA, - STATE(1423), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84841] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3503), 1, - anon_sym_COMMA, - ACTIONS(3506), 1, - anon_sym_RPAREN, - STATE(1503), 1, - aux_sym__attribute_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84858] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2733), 1, - anon_sym_RPAREN, - ACTIONS(3508), 1, - anon_sym_COMMA, - STATE(1408), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84875] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - STATE(1252), 1, - sym_external_function_body, - STATE(1716), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84892] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2729), 1, - anon_sym_RPAREN, - ACTIONS(3510), 1, - anon_sym_COMMA, - STATE(1408), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84909] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3229), 1, - anon_sym_RPAREN, - ACTIONS(3512), 1, - anon_sym_COMMA, - STATE(1541), 1, - aux_sym_record_update_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84926] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(203), 1, - anon_sym_LBRACE, - ACTIONS(3514), 1, - anon_sym_DASH_GT, - STATE(943), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84943] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3516), 1, - anon_sym_COMMA, - ACTIONS(3518), 1, - anon_sym_GT_GT, - STATE(1500), 1, - aux_sym__expression_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84960] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2415), 1, - anon_sym_GT_GT, - ACTIONS(3520), 1, - anon_sym_COMMA, - STATE(1416), 1, - aux_sym__constant_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84977] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3522), 1, - anon_sym_if, - ACTIONS(3524), 1, - anon_sym_DASH_GT, - STATE(1872), 1, - sym_case_clause_guard, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [84994] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2551), 1, - anon_sym_RBRACK, - ACTIONS(3526), 1, - anon_sym_COMMA, - STATE(1400), 1, - aux_sym_constant_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85011] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - STATE(1246), 1, - sym_external_function_body, - STATE(1716), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85028] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3528), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [85041] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3532), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3530), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [85056] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3534), 1, - anon_sym_COMMA, - ACTIONS(3537), 1, - anon_sym_RPAREN, - STATE(1516), 1, - aux_sym_constant_tuple_type_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85073] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3539), 1, - anon_sym_COMMA, - ACTIONS(3541), 1, - anon_sym_RPAREN, - STATE(1419), 1, - aux_sym_constant_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85090] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2803), 1, - anon_sym_RPAREN, - ACTIONS(3543), 1, - anon_sym_COMMA, - STATE(1516), 1, - aux_sym_constant_tuple_type_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85107] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3545), 1, - anon_sym_COMMA, - ACTIONS(3548), 1, - anon_sym_RPAREN, - STATE(1519), 1, - aux_sym_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85124] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3158), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [85137] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3550), 1, - anon_sym_COMMA, - ACTIONS(3552), 1, - anon_sym_RPAREN, - STATE(1556), 1, - aux_sym_case_clause_pattern_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85154] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(880), 1, - anon_sym_RPAREN, - ACTIONS(3554), 1, - anon_sym_COMMA, - STATE(1519), 1, - aux_sym_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85171] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1172), 1, - anon_sym_RPAREN, - ACTIONS(3556), 1, - anon_sym_COMMA, - STATE(1339), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85188] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3558), 1, - anon_sym_COMMA, - ACTIONS(3560), 1, - anon_sym_RPAREN, - STATE(1522), 1, - aux_sym_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85205] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1204), 1, - anon_sym_GT_GT, - ACTIONS(3562), 1, - anon_sym_COMMA, - STATE(1473), 1, - aux_sym__expression_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85222] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3272), 1, - sym__name, - ACTIONS(3564), 1, - anon_sym_RPAREN, - STATE(1449), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85239] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3156), 1, - anon_sym_COLON, - ACTIONS(3566), 1, - anon_sym_EQ, - STATE(1887), 1, - sym__type_annotation, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85256] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2243), 1, - anon_sym_GT_GT, - ACTIONS(3568), 1, - anon_sym_COMMA, - STATE(1540), 1, - aux_sym__pattern_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85273] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3570), 3, - anon_sym_RBRACE, - anon_sym_AT, - sym__upname, - [85286] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2797), 1, - anon_sym_RPAREN, - ACTIONS(3572), 1, - anon_sym_COMMA, - STATE(1516), 1, - aux_sym_constant_tuple_type_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85303] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - ACTIONS(3574), 1, - anon_sym_DASH_GT, - STATE(580), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85320] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3576), 1, - anon_sym_COMMA, - ACTIONS(3578), 1, - anon_sym_GT_GT, - STATE(1525), 1, - aux_sym__expression_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85337] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3580), 1, - anon_sym_COMMA, - ACTIONS(3582), 1, - anon_sym_RPAREN, - STATE(1581), 1, - aux_sym__attribute_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85354] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3584), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [85367] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3171), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [85380] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3586), 1, - anon_sym_COMMA, - ACTIONS(3588), 1, - anon_sym_GT_GT, - STATE(1548), 1, - aux_sym__expression_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85397] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3590), 1, - anon_sym_DASH_GT, - STATE(701), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85414] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3592), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [85427] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3156), 1, - anon_sym_COLON, - ACTIONS(3594), 1, - anon_sym_EQ, - STATE(1848), 1, - sym__type_annotation, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85444] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3599), 1, - anon_sym_GT_GT, - STATE(1540), 1, - aux_sym__pattern_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85461] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3601), 1, - anon_sym_COMMA, - ACTIONS(3604), 1, - anon_sym_RPAREN, - STATE(1541), 1, - aux_sym_record_update_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85478] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1222), 1, - anon_sym_GT_GT, - ACTIONS(3606), 1, - anon_sym_COMMA, - STATE(1473), 1, - aux_sym__expression_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85495] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3608), 1, - anon_sym_COMMA, - ACTIONS(3610), 1, - anon_sym_RPAREN, - STATE(1490), 1, - aux_sym_anonymous_function_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85512] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3612), 1, - anon_sym_COMMA, - ACTIONS(3615), 1, - anon_sym_RPAREN, - STATE(1544), 1, - aux_sym_constant_type_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85529] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(870), 1, - anon_sym_RPAREN, - ACTIONS(3617), 1, - anon_sym_COMMA, - STATE(1519), 1, - aux_sym_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85546] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3619), 1, - anon_sym_COMMA, - ACTIONS(3622), 1, - anon_sym_LT_DASH, - STATE(1546), 1, - aux_sym_use_assignments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85563] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3624), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [85576] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1468), 1, - anon_sym_GT_GT, - ACTIONS(3626), 1, - anon_sym_COMMA, - STATE(1473), 1, - aux_sym__expression_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85593] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3628), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [85606] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - STATE(754), 1, - sym_external_function_body, - STATE(1649), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85623] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(984), 1, - anon_sym_RPAREN, - ACTIONS(3630), 1, - anon_sym_COMMA, - STATE(1339), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85640] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3632), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [85653] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3634), 1, - anon_sym_COMMA, - ACTIONS(3636), 1, - anon_sym_RPAREN, - STATE(1545), 1, - aux_sym_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85670] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3638), 1, - anon_sym_COMMA, - ACTIONS(3640), 1, - anon_sym_RPAREN, - STATE(1565), 1, - aux_sym_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85687] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1320), 1, - anon_sym_GT_GT, - ACTIONS(3642), 1, - anon_sym_COMMA, - STATE(1473), 1, - aux_sym__expression_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85704] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3644), 1, - anon_sym_COMMA, - ACTIONS(3646), 1, - anon_sym_RPAREN, - STATE(1349), 1, - aux_sym_case_clause_pattern_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85721] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3648), 1, - anon_sym_LBRACE, - ACTIONS(3650), 1, - anon_sym_COMMA, - STATE(1429), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85738] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1174), 1, - anon_sym_RPAREN, - ACTIONS(3652), 1, - anon_sym_COMMA, - STATE(1339), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85755] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - STATE(720), 1, - sym_external_function_body, - STATE(1649), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85772] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3654), 1, - anon_sym_COMMA, - ACTIONS(3656), 1, - anon_sym_RPAREN, - STATE(1566), 1, - aux_sym_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85789] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3658), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [85802] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3660), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [85815] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1012), 1, - anon_sym_LBRACE, - ACTIONS(3662), 1, - anon_sym_DASH_GT, - STATE(288), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85832] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3664), 1, - anon_sym_COMMA, - ACTIONS(3666), 1, - anon_sym_GT_GT, - STATE(1555), 1, - aux_sym__expression_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85849] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(862), 1, - anon_sym_RPAREN, - ACTIONS(3668), 1, - anon_sym_COMMA, - STATE(1519), 1, - aux_sym_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85866] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(876), 1, - anon_sym_RPAREN, - ACTIONS(3670), 1, - anon_sym_COMMA, - STATE(1519), 1, - aux_sym_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85883] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3672), 1, - anon_sym_COMMA, - ACTIONS(3674), 1, - anon_sym_RBRACK, - STATE(1575), 1, - aux_sym_constant_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85900] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3676), 1, - anon_sym_COMMA, - ACTIONS(3678), 1, - anon_sym_GT_GT, - STATE(1577), 1, - aux_sym__constant_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85917] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2757), 1, - anon_sym_RPAREN, - ACTIONS(3680), 1, - anon_sym_COMMA, - STATE(1544), 1, - aux_sym_constant_type_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85934] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3682), 1, - anon_sym_COMMA, - ACTIONS(3684), 1, - anon_sym_RPAREN, - STATE(1439), 1, - aux_sym_external_function_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85951] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3686), 1, - anon_sym_COMMA, - ACTIONS(3689), 1, - anon_sym_RPAREN, - STATE(1571), 1, - aux_sym_external_function_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85968] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3691), 1, - anon_sym_COMMA, - ACTIONS(3693), 1, - anon_sym_RBRACK, - STATE(1512), 1, - aux_sym_constant_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [85985] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3695), 1, - anon_sym_COMMA, - ACTIONS(3697), 1, - anon_sym_RPAREN, - STATE(1582), 1, - aux_sym_constant_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86002] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3701), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3699), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [86017] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2505), 1, - anon_sym_RBRACK, - ACTIONS(3703), 1, - anon_sym_COMMA, - STATE(1400), 1, - aux_sym_constant_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86034] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3705), 1, - anon_sym_COMMA, - ACTIONS(3707), 1, - anon_sym_GT_GT, - STATE(1510), 1, - aux_sym__constant_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86051] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2425), 1, - anon_sym_GT_GT, - ACTIONS(3709), 1, - anon_sym_COMMA, - STATE(1416), 1, - aux_sym__constant_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86068] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3711), 1, - anon_sym_COMMA, - ACTIONS(3713), 1, - anon_sym_RPAREN, - STATE(1586), 1, - aux_sym_constant_record_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86085] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3715), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [86098] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3717), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [86111] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2341), 1, - anon_sym_RPAREN, - ACTIONS(3719), 1, - anon_sym_COMMA, - STATE(1503), 1, - aux_sym__attribute_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86128] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2509), 1, - anon_sym_RPAREN, - ACTIONS(3721), 1, - anon_sym_COMMA, - STATE(1400), 1, - aux_sym_constant_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86145] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3723), 1, - anon_sym_COMMA, - ACTIONS(3725), 1, - anon_sym_GT_GT, - STATE(1528), 1, - aux_sym__pattern_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86162] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(856), 1, - anon_sym_RPAREN, - ACTIONS(3727), 1, - anon_sym_COMMA, - STATE(1519), 1, - aux_sym_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86179] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2890), 1, - anon_sym_RPAREN, - ACTIONS(3729), 1, - anon_sym_COMMA, - STATE(1442), 1, - aux_sym_function_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86196] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2315), 1, - anon_sym_RPAREN, - ACTIONS(3731), 1, - anon_sym_COMMA, - STATE(1501), 1, - aux_sym_constant_record_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86213] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3733), 1, - anon_sym_RBRACE, - ACTIONS(3735), 1, - anon_sym_COMMA, - STATE(1482), 1, - aux_sym_unqualified_imports_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86230] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3739), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3737), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [86245] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3741), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3737), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [86260] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3743), 1, - anon_sym_COMMA, - ACTIONS(3746), 1, - anon_sym_RPAREN, - STATE(1590), 1, - aux_sym_anonymous_function_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86277] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1116), 1, - anon_sym_RPAREN, - ACTIONS(3748), 1, - anon_sym_COMMA, - STATE(1339), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86294] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3750), 1, - anon_sym_COMMA, - ACTIONS(3752), 1, - anon_sym_RPAREN, - STATE(1584), 1, - aux_sym_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86311] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1360), 1, - anon_sym_GT_GT, - ACTIONS(3754), 1, - anon_sym_COMMA, - STATE(1473), 1, - aux_sym__expression_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86328] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3272), 1, - sym__name, - ACTIONS(3756), 1, - anon_sym_RPAREN, - STATE(1722), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86345] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3758), 3, - anon_sym_RBRACE, - anon_sym_AT, - sym__upname, - [86358] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3760), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [86371] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2249), 1, - anon_sym_LT_DASH, - ACTIONS(3762), 1, - anon_sym_COMMA, - STATE(1546), 1, - aux_sym_use_assignments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86388] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3240), 1, - anon_sym_COLON, - ACTIONS(3764), 1, - anon_sym_EQ, - STATE(1861), 1, - sym__constant_type_annotation, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86405] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3756), 1, - anon_sym_RPAREN, - ACTIONS(3766), 1, - anon_sym_COMMA, - STATE(1466), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86422] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3768), 1, - anon_sym_COMMA, - ACTIONS(3770), 1, - anon_sym_GT_GT, - STATE(1593), 1, - aux_sym__expression_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86439] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1048), 1, - anon_sym_LBRACE, - ACTIONS(3772), 1, - anon_sym_DASH_GT, - STATE(60), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86456] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3774), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [86469] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3156), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_EQ, - STATE(1888), 1, - sym__type_annotation, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86486] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3778), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [86498] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - STATE(1849), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86512] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3780), 2, - anon_sym_COMMA, - anon_sym_LT_DASH, - [86524] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3782), 1, - anon_sym_LPAREN, - STATE(660), 1, - sym_function_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86538] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3784), 1, - anon_sym_LPAREN, - STATE(41), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86552] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2920), 1, - sym__name, - STATE(1613), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86566] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3786), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [86578] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3746), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [86590] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2920), 1, - sym__name, - STATE(1614), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86604] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3788), 1, - anon_sym_LPAREN, - STATE(1882), 1, - sym_external_function_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86618] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3788), 1, - anon_sym_LPAREN, - STATE(1881), 1, - sym_external_function_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86632] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3790), 1, - sym__name, - STATE(1188), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86646] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3792), 1, - sym__name, - STATE(654), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86660] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2920), 1, - sym__name, - STATE(1647), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86674] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3794), 1, - sym__name, - STATE(657), 1, - sym_module, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86688] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3796), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [86700] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1846), 1, - anon_sym_LBRACE, - ACTIONS(1848), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86714] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2723), 1, - sym__upname, - STATE(1484), 1, - sym_type_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86728] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3798), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [86740] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1048), 1, - anon_sym_LBRACE, - STATE(55), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86754] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3800), 1, - anon_sym_LPAREN, - STATE(1200), 1, - sym_function_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86768] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2920), 1, - sym__name, - STATE(1210), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86782] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1044), 1, - sym__upname, - STATE(238), 1, - sym_constructor_name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86796] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3802), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [86808] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3798), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [86820] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2920), 1, - sym__name, - STATE(1433), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86834] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2417), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [86846] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3250), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [86858] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2723), 1, - sym__upname, - STATE(1738), 1, - sym_type_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86872] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3689), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [86884] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3804), 1, - anon_sym_type, - ACTIONS(3806), 1, - anon_sym_fn, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86898] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3808), 1, - anon_sym_type, - ACTIONS(3810), 1, - anon_sym_fn, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86912] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3812), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [86924] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3262), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [86936] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3814), 1, - anon_sym_LPAREN, - STATE(255), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86950] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3816), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [86962] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3818), 1, - anon_sym_COLON, - ACTIONS(3820), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [86976] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3822), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [86988] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3824), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [87000] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3136), 1, - sym__name, - STATE(209), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87014] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(451), 1, - sym__upname, - STATE(172), 1, - sym_constructor_name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87028] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(695), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87042] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3826), 1, - sym__name, - STATE(270), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87056] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3788), 1, - anon_sym_LPAREN, - STATE(1802), 1, - sym_external_function_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87070] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2427), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [87082] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(53), 1, - anon_sym_DQUOTE, - STATE(753), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87096] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(1238), 1, - sym_unqualified_imports, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87110] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3830), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [87122] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3832), 1, - anon_sym_LPAREN, - STATE(57), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87136] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3834), 1, - anon_sym_LPAREN, - STATE(208), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87150] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3130), 1, - anon_sym_LPAREN, - STATE(1412), 1, - sym_anonymous_function_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87164] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3836), 1, - sym__name, - STATE(1210), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87178] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3788), 1, - anon_sym_LPAREN, - STATE(1778), 1, - sym_external_function_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87192] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - STATE(1767), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87206] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - STATE(1772), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87220] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3130), 1, - anon_sym_LPAREN, - STATE(1508), 1, - sym_anonymous_function_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87234] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1080), 1, - sym__upname, - STATE(21), 1, - sym_constructor_name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87248] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3836), 1, - sym__name, - STATE(1188), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87262] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - STATE(1807), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87276] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1012), 1, - anon_sym_LBRACE, - STATE(278), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87290] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - STATE(1810), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87304] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2920), 1, - sym__name, - STATE(1624), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87318] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3622), 2, - anon_sym_COMMA, - anon_sym_LT_DASH, - [87330] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3130), 1, - anon_sym_LPAREN, - STATE(1531), 1, - sym_anonymous_function_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87344] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3604), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [87356] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3800), 1, - anon_sym_LPAREN, - STATE(1202), 1, - sym_function_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87370] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3838), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [87382] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2892), 1, - anon_sym_LBRACE, - ACTIONS(2894), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87396] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3599), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [87408] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3840), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [87420] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3842), 1, - anon_sym_type, - ACTIONS(3844), 1, - anon_sym_fn, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87434] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2910), 1, - sym__name, - STATE(647), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87448] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(101), 1, - sym__upname, - STATE(549), 1, - sym_constructor_name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87462] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(451), 1, - sym__upname, - STATE(1740), 1, - sym_constructor_name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87476] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3846), 1, - anon_sym_LPAREN, - STATE(568), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87490] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - STATE(1857), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87504] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3130), 1, - anon_sym_LPAREN, - STATE(1563), 1, - sym_anonymous_function_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87518] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3615), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [87530] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3848), 1, - anon_sym_LPAREN, - STATE(650), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87544] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3782), 1, - anon_sym_LPAREN, - STATE(655), 1, - sym_function_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87558] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3331), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [87570] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2920), 1, - sym__name, - STATE(1656), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87584] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3850), 1, - sym__name, - STATE(570), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87598] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - STATE(1889), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87612] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3852), 1, - anon_sym_COMMA, - ACTIONS(3854), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87626] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3856), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [87638] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - STATE(1890), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87652] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1812), 1, - sym__upname, - STATE(1258), 1, - sym_constructor_name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87666] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2920), 1, - sym__name, - STATE(1201), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87680] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3130), 1, - anon_sym_LPAREN, - STATE(1601), 1, - sym_anonymous_function_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87694] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3858), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [87706] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - STATE(1869), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87720] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2791), 1, - sym__upname, - STATE(645), 1, - sym_type_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87734] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3802), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [87746] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - STATE(1870), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87760] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(451), 1, - sym__upname, - STATE(1346), 1, - sym_constructor_name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87774] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2723), 1, - sym__upname, - STATE(1103), 1, - sym_type_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87788] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - STATE(1843), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87802] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3548), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [87814] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - STATE(587), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87828] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - STATE(1836), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87842] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3860), 1, - anon_sym_LBRACE, - STATE(686), 1, - sym_unqualified_imports, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87856] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3130), 1, - anon_sym_LPAREN, - STATE(1440), 1, - sym_anonymous_function_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87870] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3778), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [87882] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3862), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [87894] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(411), 1, - anon_sym_LBRACE, - STATE(219), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87908] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3864), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [87920] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3866), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [87932] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3868), 1, - anon_sym_LBRACE, - ACTIONS(3870), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87946] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(63), 1, - sym__upname, - STATE(61), 1, - sym_constructor_name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87960] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3122), 1, - sym__name, - STATE(73), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87974] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3234), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [87986] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - STATE(1257), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88000] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3872), 1, - sym__name, - STATE(1206), 1, - sym_module, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88014] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3874), 1, - anon_sym_LPAREN, - STATE(876), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88028] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3272), 1, - sym__name, - STATE(1722), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88042] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3790), 1, - sym__name, - STATE(1201), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88056] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3876), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [88068] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3398), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [88080] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1114), 1, - sym__upname, - STATE(572), 1, - sym_constructor_name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88094] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3506), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [88106] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3499), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [88118] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2900), 1, - sym__name, - STATE(889), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88132] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3417), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [88144] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3878), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [88156] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3880), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [88168] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3882), 1, - anon_sym_type, - ACTIONS(3884), 1, - anon_sym_fn, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88182] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3886), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [88194] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2920), 1, - sym__name, - STATE(1607), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88208] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3888), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [88220] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2920), 1, - sym__name, - STATE(1669), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88234] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2920), 1, - sym__name, - STATE(1435), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88248] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2920), 1, - sym__name, - STATE(1598), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88262] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - STATE(98), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88276] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3890), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [88288] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3470), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [88300] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3892), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [88312] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(233), 1, - sym__upname, - STATE(891), 1, - sym_constructor_name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88326] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3130), 1, - anon_sym_LPAREN, - STATE(1537), 1, - sym_anonymous_function_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88340] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(203), 1, - anon_sym_LBRACE, - STATE(905), 1, - sym_block, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88354] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3537), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [88366] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3281), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [88378] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3894), 1, - sym__name, - STATE(19), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88392] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2920), 1, - sym__name, - STATE(1410), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88406] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3896), 1, - anon_sym_LBRACE, - ACTIONS(3898), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88420] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2920), 1, - sym__name, - STATE(1740), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88434] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - STATE(1856), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88448] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(441), 1, - anon_sym_DQUOTE, - STATE(1855), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88462] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3900), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88473] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88484] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3904), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88495] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3906), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88506] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3908), 1, - anon_sym_LT_DASH, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88517] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3910), 1, - sym__name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88528] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3912), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88539] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3914), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88550] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3916), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88561] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3918), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88572] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3920), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88583] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3922), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88594] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3924), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88605] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3926), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88616] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3928), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88627] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3930), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88638] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3932), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88649] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3934), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88660] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3820), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88671] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3936), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88682] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3938), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88693] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3940), 1, - anon_sym_type, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88704] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3942), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88715] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3944), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88726] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3946), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88737] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3948), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88748] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3950), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88759] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3952), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88770] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3954), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88781] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3956), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88792] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3958), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88803] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3960), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88814] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3962), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88825] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3964), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88836] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3966), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88847] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3968), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88858] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3970), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88869] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3972), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88880] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3974), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88891] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3976), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88902] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88913] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3980), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88924] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3982), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88935] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88946] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3986), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88957] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3988), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88968] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3990), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88979] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3992), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88990] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3994), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89001] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3996), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89012] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3998), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89023] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4000), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89034] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4002), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89045] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4004), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89056] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4006), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89067] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4008), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89078] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89089] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4012), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89100] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4014), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89111] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4016), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89122] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4018), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89133] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4020), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89144] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4022), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89155] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2089), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89166] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89177] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4026), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89188] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4028), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89199] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89210] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4032), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89221] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89232] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4036), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89243] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3040), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89254] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4038), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89265] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4040), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89276] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4042), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89287] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4044), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89298] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4046), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89309] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4048), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89320] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4050), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89331] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4052), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89342] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4054), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89353] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4056), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89364] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4058), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89375] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4060), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89386] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4062), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89397] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4064), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89408] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4066), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89419] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4068), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89430] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4070), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89441] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4072), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89452] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89463] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4076), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89474] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4078), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89485] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4080), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89496] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4082), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89507] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4084), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89518] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4086), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89529] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4088), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89540] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4090), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89551] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4092), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89562] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4094), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89573] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4096), 1, - anon_sym_type, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89584] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4098), 1, - anon_sym_type, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89595] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4100), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89606] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4102), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89617] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4104), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89628] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2016), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89639] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4106), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89650] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4108), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89661] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4110), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89672] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4112), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89683] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4114), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89694] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4116), 1, - ts_builtin_sym_end, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89705] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4118), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89716] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4120), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89727] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4122), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89738] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4124), 1, - anon_sym_type, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89749] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4126), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89760] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4128), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89771] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4130), 1, - sym__name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89782] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4132), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89793] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4134), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89804] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4136), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89815] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4138), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89826] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4140), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89837] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4142), 1, - anon_sym_LT_DASH, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89848] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4144), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89859] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4146), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89870] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4148), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89881] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4150), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89892] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4152), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89903] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4154), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89914] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4156), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89925] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4158), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89936] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4160), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89947] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4162), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89958] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4164), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89969] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4166), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89980] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4168), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [89991] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4170), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, -}; - -static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(14)] = 0, - [SMALL_STATE(15)] = 73, - [SMALL_STATE(16)] = 141, - [SMALL_STATE(17)] = 209, - [SMALL_STATE(18)] = 277, - [SMALL_STATE(19)] = 345, - [SMALL_STATE(20)] = 413, - [SMALL_STATE(21)] = 481, - [SMALL_STATE(22)] = 549, - [SMALL_STATE(23)] = 617, - [SMALL_STATE(24)] = 745, - [SMALL_STATE(25)] = 813, - [SMALL_STATE(26)] = 941, - [SMALL_STATE(27)] = 1013, - [SMALL_STATE(28)] = 1085, - [SMALL_STATE(29)] = 1213, - [SMALL_STATE(30)] = 1281, - [SMALL_STATE(31)] = 1409, - [SMALL_STATE(32)] = 1537, - [SMALL_STATE(33)] = 1605, - [SMALL_STATE(34)] = 1733, - [SMALL_STATE(35)] = 1861, - [SMALL_STATE(36)] = 1989, - [SMALL_STATE(37)] = 2117, - [SMALL_STATE(38)] = 2185, - [SMALL_STATE(39)] = 2313, - [SMALL_STATE(40)] = 2385, - [SMALL_STATE(41)] = 2513, - [SMALL_STATE(42)] = 2581, - [SMALL_STATE(43)] = 2649, - [SMALL_STATE(44)] = 2717, - [SMALL_STATE(45)] = 2845, - [SMALL_STATE(46)] = 2973, - [SMALL_STATE(47)] = 3101, - [SMALL_STATE(48)] = 3169, - [SMALL_STATE(49)] = 3237, - [SMALL_STATE(50)] = 3365, - [SMALL_STATE(51)] = 3432, - [SMALL_STATE(52)] = 3499, - [SMALL_STATE(53)] = 3566, - [SMALL_STATE(54)] = 3633, - [SMALL_STATE(55)] = 3700, - [SMALL_STATE(56)] = 3767, - [SMALL_STATE(57)] = 3838, - [SMALL_STATE(58)] = 3905, - [SMALL_STATE(59)] = 3972, - [SMALL_STATE(60)] = 4041, - [SMALL_STATE(61)] = 4108, - [SMALL_STATE(62)] = 4175, - [SMALL_STATE(63)] = 4244, - [SMALL_STATE(64)] = 4315, - [SMALL_STATE(65)] = 4382, - [SMALL_STATE(66)] = 4449, - [SMALL_STATE(67)] = 4516, - [SMALL_STATE(68)] = 4583, - [SMALL_STATE(69)] = 4650, - [SMALL_STATE(70)] = 4719, - [SMALL_STATE(71)] = 4786, - [SMALL_STATE(72)] = 4853, - [SMALL_STATE(73)] = 4920, - [SMALL_STATE(74)] = 4987, - [SMALL_STATE(75)] = 5058, - [SMALL_STATE(76)] = 5125, - [SMALL_STATE(77)] = 5194, - [SMALL_STATE(78)] = 5261, - [SMALL_STATE(79)] = 5330, - [SMALL_STATE(80)] = 5397, - [SMALL_STATE(81)] = 5464, - [SMALL_STATE(82)] = 5535, - [SMALL_STATE(83)] = 5602, - [SMALL_STATE(84)] = 5669, - [SMALL_STATE(85)] = 5735, - [SMALL_STATE(86)] = 5801, - [SMALL_STATE(87)] = 5887, - [SMALL_STATE(88)] = 5953, - [SMALL_STATE(89)] = 6019, - [SMALL_STATE(90)] = 6085, - [SMALL_STATE(91)] = 6151, - [SMALL_STATE(92)] = 6219, - [SMALL_STATE(93)] = 6287, - [SMALL_STATE(94)] = 6355, - [SMALL_STATE(95)] = 6421, - [SMALL_STATE(96)] = 6487, - [SMALL_STATE(97)] = 6553, - [SMALL_STATE(98)] = 6639, - [SMALL_STATE(99)] = 6705, - [SMALL_STATE(100)] = 6771, - [SMALL_STATE(101)] = 6837, - [SMALL_STATE(102)] = 6903, - [SMALL_STATE(103)] = 6969, - [SMALL_STATE(104)] = 7055, - [SMALL_STATE(105)] = 7143, - [SMALL_STATE(106)] = 7209, - [SMALL_STATE(107)] = 7289, - [SMALL_STATE(108)] = 7355, - [SMALL_STATE(109)] = 7421, - [SMALL_STATE(110)] = 7487, - [SMALL_STATE(111)] = 7573, - [SMALL_STATE(112)] = 7659, - [SMALL_STATE(113)] = 7725, - [SMALL_STATE(114)] = 7791, - [SMALL_STATE(115)] = 7857, - [SMALL_STATE(116)] = 7923, - [SMALL_STATE(117)] = 7989, - [SMALL_STATE(118)] = 8063, - [SMALL_STATE(119)] = 8129, - [SMALL_STATE(120)] = 8195, - [SMALL_STATE(121)] = 8271, - [SMALL_STATE(122)] = 8337, - [SMALL_STATE(123)] = 8403, - [SMALL_STATE(124)] = 8469, - [SMALL_STATE(125)] = 8535, - [SMALL_STATE(126)] = 8617, - [SMALL_STATE(127)] = 8701, - [SMALL_STATE(128)] = 8771, - [SMALL_STATE(129)] = 8836, - [SMALL_STATE(130)] = 8901, - [SMALL_STATE(131)] = 8986, - [SMALL_STATE(132)] = 9071, - [SMALL_STATE(133)] = 9136, - [SMALL_STATE(134)] = 9221, - [SMALL_STATE(135)] = 9306, - [SMALL_STATE(136)] = 9371, - [SMALL_STATE(137)] = 9436, - [SMALL_STATE(138)] = 9501, - [SMALL_STATE(139)] = 9566, - [SMALL_STATE(140)] = 9631, - [SMALL_STATE(141)] = 9696, - [SMALL_STATE(142)] = 9761, - [SMALL_STATE(143)] = 9826, - [SMALL_STATE(144)] = 9911, - [SMALL_STATE(145)] = 9976, - [SMALL_STATE(146)] = 10061, - [SMALL_STATE(147)] = 10126, - [SMALL_STATE(148)] = 10191, - [SMALL_STATE(149)] = 10276, - [SMALL_STATE(150)] = 10341, - [SMALL_STATE(151)] = 10410, - [SMALL_STATE(152)] = 10475, - [SMALL_STATE(153)] = 10560, - [SMALL_STATE(154)] = 10625, - [SMALL_STATE(155)] = 10708, - [SMALL_STATE(156)] = 10789, - [SMALL_STATE(157)] = 10868, - [SMALL_STATE(158)] = 10953, - [SMALL_STATE(159)] = 11018, - [SMALL_STATE(160)] = 11103, - [SMALL_STATE(161)] = 11178, - [SMALL_STATE(162)] = 11243, - [SMALL_STATE(163)] = 11308, - [SMALL_STATE(164)] = 11381, - [SMALL_STATE(165)] = 11446, - [SMALL_STATE(166)] = 11572, - [SMALL_STATE(167)] = 11698, - [SMALL_STATE(168)] = 11824, - [SMALL_STATE(169)] = 11950, - [SMALL_STATE(170)] = 12076, - [SMALL_STATE(171)] = 12140, - [SMALL_STATE(172)] = 12204, - [SMALL_STATE(173)] = 12268, - [SMALL_STATE(174)] = 12394, - [SMALL_STATE(175)] = 12520, - [SMALL_STATE(176)] = 12643, - [SMALL_STATE(177)] = 12766, - [SMALL_STATE(178)] = 12889, - [SMALL_STATE(179)] = 13012, - [SMALL_STATE(180)] = 13135, - [SMALL_STATE(181)] = 13258, - [SMALL_STATE(182)] = 13381, - [SMALL_STATE(183)] = 13504, - [SMALL_STATE(184)] = 13627, - [SMALL_STATE(185)] = 13750, - [SMALL_STATE(186)] = 13873, - [SMALL_STATE(187)] = 13996, - [SMALL_STATE(188)] = 14063, - [SMALL_STATE(189)] = 14186, - [SMALL_STATE(190)] = 14309, - [SMALL_STATE(191)] = 14432, - [SMALL_STATE(192)] = 14555, - [SMALL_STATE(193)] = 14678, - [SMALL_STATE(194)] = 14801, - [SMALL_STATE(195)] = 14924, - [SMALL_STATE(196)] = 15047, - [SMALL_STATE(197)] = 15170, - [SMALL_STATE(198)] = 15232, - [SMALL_STATE(199)] = 15352, - [SMALL_STATE(200)] = 15470, - [SMALL_STATE(201)] = 15532, - [SMALL_STATE(202)] = 15594, - [SMALL_STATE(203)] = 15660, - [SMALL_STATE(204)] = 15722, - [SMALL_STATE(205)] = 15784, - [SMALL_STATE(206)] = 15846, - [SMALL_STATE(207)] = 15908, - [SMALL_STATE(208)] = 15970, - [SMALL_STATE(209)] = 16032, - [SMALL_STATE(210)] = 16094, - [SMALL_STATE(211)] = 16156, - [SMALL_STATE(212)] = 16222, - [SMALL_STATE(213)] = 16284, - [SMALL_STATE(214)] = 16346, - [SMALL_STATE(215)] = 16409, - [SMALL_STATE(216)] = 16470, - [SMALL_STATE(217)] = 16531, - [SMALL_STATE(218)] = 16592, - [SMALL_STATE(219)] = 16655, - [SMALL_STATE(220)] = 16716, - [SMALL_STATE(221)] = 16779, - [SMALL_STATE(222)] = 16840, - [SMALL_STATE(223)] = 16905, - [SMALL_STATE(224)] = 16966, - [SMALL_STATE(225)] = 17027, - [SMALL_STATE(226)] = 17088, - [SMALL_STATE(227)] = 17148, - [SMALL_STATE(228)] = 17208, - [SMALL_STATE(229)] = 17322, - [SMALL_STATE(230)] = 17382, - [SMALL_STATE(231)] = 17496, - [SMALL_STATE(232)] = 17610, - [SMALL_STATE(233)] = 17722, - [SMALL_STATE(234)] = 17782, - [SMALL_STATE(235)] = 17842, - [SMALL_STATE(236)] = 17956, - [SMALL_STATE(237)] = 18016, - [SMALL_STATE(238)] = 18130, - [SMALL_STATE(239)] = 18190, - [SMALL_STATE(240)] = 18250, - [SMALL_STATE(241)] = 18310, - [SMALL_STATE(242)] = 18370, - [SMALL_STATE(243)] = 18430, - [SMALL_STATE(244)] = 18544, - [SMALL_STATE(245)] = 18658, - [SMALL_STATE(246)] = 18718, - [SMALL_STATE(247)] = 18778, - [SMALL_STATE(248)] = 18838, - [SMALL_STATE(249)] = 18902, - [SMALL_STATE(250)] = 18966, - [SMALL_STATE(251)] = 19080, - [SMALL_STATE(252)] = 19140, - [SMALL_STATE(253)] = 19200, - [SMALL_STATE(254)] = 19260, - [SMALL_STATE(255)] = 19374, - [SMALL_STATE(256)] = 19434, - [SMALL_STATE(257)] = 19548, - [SMALL_STATE(258)] = 19662, - [SMALL_STATE(259)] = 19776, - [SMALL_STATE(260)] = 19836, - [SMALL_STATE(261)] = 19896, - [SMALL_STATE(262)] = 20010, - [SMALL_STATE(263)] = 20070, - [SMALL_STATE(264)] = 20130, - [SMALL_STATE(265)] = 20190, - [SMALL_STATE(266)] = 20250, - [SMALL_STATE(267)] = 20364, - [SMALL_STATE(268)] = 20424, - [SMALL_STATE(269)] = 20484, - [SMALL_STATE(270)] = 20544, - [SMALL_STATE(271)] = 20604, - [SMALL_STATE(272)] = 20664, - [SMALL_STATE(273)] = 20724, - [SMALL_STATE(274)] = 20784, - [SMALL_STATE(275)] = 20844, - [SMALL_STATE(276)] = 20904, - [SMALL_STATE(277)] = 21015, - [SMALL_STATE(278)] = 21126, - [SMALL_STATE(279)] = 21185, - [SMALL_STATE(280)] = 21296, - [SMALL_STATE(281)] = 21355, - [SMALL_STATE(282)] = 21466, - [SMALL_STATE(283)] = 21577, - [SMALL_STATE(284)] = 21688, - [SMALL_STATE(285)] = 21747, - [SMALL_STATE(286)] = 21858, - [SMALL_STATE(287)] = 21969, - [SMALL_STATE(288)] = 22080, - [SMALL_STATE(289)] = 22139, - [SMALL_STATE(290)] = 22198, - [SMALL_STATE(291)] = 22309, - [SMALL_STATE(292)] = 22420, - [SMALL_STATE(293)] = 22531, - [SMALL_STATE(294)] = 22590, - [SMALL_STATE(295)] = 22701, - [SMALL_STATE(296)] = 22812, - [SMALL_STATE(297)] = 22923, - [SMALL_STATE(298)] = 23034, - [SMALL_STATE(299)] = 23145, - [SMALL_STATE(300)] = 23256, - [SMALL_STATE(301)] = 23367, - [SMALL_STATE(302)] = 23478, - [SMALL_STATE(303)] = 23589, - [SMALL_STATE(304)] = 23700, - [SMALL_STATE(305)] = 23759, - [SMALL_STATE(306)] = 23818, - [SMALL_STATE(307)] = 23929, - [SMALL_STATE(308)] = 24040, - [SMALL_STATE(309)] = 24151, - [SMALL_STATE(310)] = 24262, - [SMALL_STATE(311)] = 24373, - [SMALL_STATE(312)] = 24434, - [SMALL_STATE(313)] = 24495, - [SMALL_STATE(314)] = 24606, - [SMALL_STATE(315)] = 24717, - [SMALL_STATE(316)] = 24780, - [SMALL_STATE(317)] = 24891, - [SMALL_STATE(318)] = 25002, - [SMALL_STATE(319)] = 25113, - [SMALL_STATE(320)] = 25174, - [SMALL_STATE(321)] = 25285, - [SMALL_STATE(322)] = 25344, - [SMALL_STATE(323)] = 25455, - [SMALL_STATE(324)] = 25518, - [SMALL_STATE(325)] = 25629, - [SMALL_STATE(326)] = 25740, - [SMALL_STATE(327)] = 25851, - [SMALL_STATE(328)] = 25962, - [SMALL_STATE(329)] = 26023, - [SMALL_STATE(330)] = 26084, - [SMALL_STATE(331)] = 26195, - [SMALL_STATE(332)] = 26306, - [SMALL_STATE(333)] = 26417, - [SMALL_STATE(334)] = 26528, - [SMALL_STATE(335)] = 26639, - [SMALL_STATE(336)] = 26747, - [SMALL_STATE(337)] = 26819, - [SMALL_STATE(338)] = 26927, - [SMALL_STATE(339)] = 27035, - [SMALL_STATE(340)] = 27093, - [SMALL_STATE(341)] = 27201, - [SMALL_STATE(342)] = 27309, - [SMALL_STATE(343)] = 27417, - [SMALL_STATE(344)] = 27525, - [SMALL_STATE(345)] = 27637, - [SMALL_STATE(346)] = 27745, - [SMALL_STATE(347)] = 27853, - [SMALL_STATE(348)] = 27961, - [SMALL_STATE(349)] = 28073, - [SMALL_STATE(350)] = 28181, - [SMALL_STATE(351)] = 28289, - [SMALL_STATE(352)] = 28397, - [SMALL_STATE(353)] = 28505, - [SMALL_STATE(354)] = 28613, - [SMALL_STATE(355)] = 28721, - [SMALL_STATE(356)] = 28833, - [SMALL_STATE(357)] = 28941, - [SMALL_STATE(358)] = 29049, - [SMALL_STATE(359)] = 29157, - [SMALL_STATE(360)] = 29265, - [SMALL_STATE(361)] = 29373, - [SMALL_STATE(362)] = 29481, - [SMALL_STATE(363)] = 29589, - [SMALL_STATE(364)] = 29697, - [SMALL_STATE(365)] = 29755, - [SMALL_STATE(366)] = 29863, - [SMALL_STATE(367)] = 29971, - [SMALL_STATE(368)] = 30079, - [SMALL_STATE(369)] = 30187, - [SMALL_STATE(370)] = 30295, - [SMALL_STATE(371)] = 30403, - [SMALL_STATE(372)] = 30511, - [SMALL_STATE(373)] = 30619, - [SMALL_STATE(374)] = 30727, - [SMALL_STATE(375)] = 30835, - [SMALL_STATE(376)] = 30943, - [SMALL_STATE(377)] = 31051, - [SMALL_STATE(378)] = 31159, - [SMALL_STATE(379)] = 31271, - [SMALL_STATE(380)] = 31379, - [SMALL_STATE(381)] = 31487, - [SMALL_STATE(382)] = 31595, - [SMALL_STATE(383)] = 31707, - [SMALL_STATE(384)] = 31815, - [SMALL_STATE(385)] = 31923, - [SMALL_STATE(386)] = 32031, - [SMALL_STATE(387)] = 32139, - [SMALL_STATE(388)] = 32247, - [SMALL_STATE(389)] = 32355, - [SMALL_STATE(390)] = 32463, - [SMALL_STATE(391)] = 32571, - [SMALL_STATE(392)] = 32651, - [SMALL_STATE(393)] = 32763, - [SMALL_STATE(394)] = 32871, - [SMALL_STATE(395)] = 32983, - [SMALL_STATE(396)] = 33095, - [SMALL_STATE(397)] = 33203, - [SMALL_STATE(398)] = 33311, - [SMALL_STATE(399)] = 33419, - [SMALL_STATE(400)] = 33527, - [SMALL_STATE(401)] = 33635, - [SMALL_STATE(402)] = 33743, - [SMALL_STATE(403)] = 33801, - [SMALL_STATE(404)] = 33909, - [SMALL_STATE(405)] = 33967, - [SMALL_STATE(406)] = 34075, - [SMALL_STATE(407)] = 34183, - [SMALL_STATE(408)] = 34291, - [SMALL_STATE(409)] = 34399, - [SMALL_STATE(410)] = 34507, - [SMALL_STATE(411)] = 34565, - [SMALL_STATE(412)] = 34623, - [SMALL_STATE(413)] = 34681, - [SMALL_STATE(414)] = 34793, - [SMALL_STATE(415)] = 34905, - [SMALL_STATE(416)] = 35013, - [SMALL_STATE(417)] = 35121, - [SMALL_STATE(418)] = 35229, - [SMALL_STATE(419)] = 35287, - [SMALL_STATE(420)] = 35345, - [SMALL_STATE(421)] = 35403, - [SMALL_STATE(422)] = 35461, - [SMALL_STATE(423)] = 35569, - [SMALL_STATE(424)] = 35677, - [SMALL_STATE(425)] = 35789, - [SMALL_STATE(426)] = 35897, - [SMALL_STATE(427)] = 36005, - [SMALL_STATE(428)] = 36117, - [SMALL_STATE(429)] = 36175, - [SMALL_STATE(430)] = 36241, - [SMALL_STATE(431)] = 36349, - [SMALL_STATE(432)] = 36417, - [SMALL_STATE(433)] = 36529, - [SMALL_STATE(434)] = 36603, - [SMALL_STATE(435)] = 36679, - [SMALL_STATE(436)] = 36741, - [SMALL_STATE(437)] = 36799, - [SMALL_STATE(438)] = 36907, - [SMALL_STATE(439)] = 36985, - [SMALL_STATE(440)] = 37063, - [SMALL_STATE(441)] = 37175, - [SMALL_STATE(442)] = 37233, - [SMALL_STATE(443)] = 37341, - [SMALL_STATE(444)] = 37449, - [SMALL_STATE(445)] = 37507, - [SMALL_STATE(446)] = 37615, - [SMALL_STATE(447)] = 37727, - [SMALL_STATE(448)] = 37835, - [SMALL_STATE(449)] = 37943, - [SMALL_STATE(450)] = 38051, - [SMALL_STATE(451)] = 38159, - [SMALL_STATE(452)] = 38267, - [SMALL_STATE(453)] = 38375, - [SMALL_STATE(454)] = 38483, - [SMALL_STATE(455)] = 38591, - [SMALL_STATE(456)] = 38699, - [SMALL_STATE(457)] = 38807, - [SMALL_STATE(458)] = 38915, - [SMALL_STATE(459)] = 39023, - [SMALL_STATE(460)] = 39131, - [SMALL_STATE(461)] = 39239, - [SMALL_STATE(462)] = 39297, - [SMALL_STATE(463)] = 39405, - [SMALL_STATE(464)] = 39483, - [SMALL_STATE(465)] = 39541, - [SMALL_STATE(466)] = 39599, - [SMALL_STATE(467)] = 39657, - [SMALL_STATE(468)] = 39765, - [SMALL_STATE(469)] = 39823, - [SMALL_STATE(470)] = 39935, - [SMALL_STATE(471)] = 40043, - [SMALL_STATE(472)] = 40151, - [SMALL_STATE(473)] = 40259, - [SMALL_STATE(474)] = 40367, - [SMALL_STATE(475)] = 40475, - [SMALL_STATE(476)] = 40587, - [SMALL_STATE(477)] = 40695, - [SMALL_STATE(478)] = 40803, - [SMALL_STATE(479)] = 40911, - [SMALL_STATE(480)] = 41019, - [SMALL_STATE(481)] = 41127, - [SMALL_STATE(482)] = 41235, - [SMALL_STATE(483)] = 41343, - [SMALL_STATE(484)] = 41455, - [SMALL_STATE(485)] = 41563, - [SMALL_STATE(486)] = 41671, - [SMALL_STATE(487)] = 41779, - [SMALL_STATE(488)] = 41887, - [SMALL_STATE(489)] = 41995, - [SMALL_STATE(490)] = 42103, - [SMALL_STATE(491)] = 42211, - [SMALL_STATE(492)] = 42319, - [SMALL_STATE(493)] = 42427, - [SMALL_STATE(494)] = 42505, - [SMALL_STATE(495)] = 42613, - [SMALL_STATE(496)] = 42725, - [SMALL_STATE(497)] = 42833, - [SMALL_STATE(498)] = 42945, - [SMALL_STATE(499)] = 43053, - [SMALL_STATE(500)] = 43161, - [SMALL_STATE(501)] = 43269, - [SMALL_STATE(502)] = 43377, - [SMALL_STATE(503)] = 43455, - [SMALL_STATE(504)] = 43563, - [SMALL_STATE(505)] = 43671, - [SMALL_STATE(506)] = 43783, - [SMALL_STATE(507)] = 43891, - [SMALL_STATE(508)] = 43999, - [SMALL_STATE(509)] = 44107, - [SMALL_STATE(510)] = 44184, - [SMALL_STATE(511)] = 44261, - [SMALL_STATE(512)] = 44338, - [SMALL_STATE(513)] = 44395, - [SMALL_STATE(514)] = 44456, - [SMALL_STATE(515)] = 44531, - [SMALL_STATE(516)] = 44608, - [SMALL_STATE(517)] = 44681, - [SMALL_STATE(518)] = 44752, - [SMALL_STATE(519)] = 44819, - [SMALL_STATE(520)] = 44884, - [SMALL_STATE(521)] = 44941, - [SMALL_STATE(522)] = 45050, - [SMALL_STATE(523)] = 45127, - [SMALL_STATE(524)] = 45204, - [SMALL_STATE(525)] = 45281, - [SMALL_STATE(526)] = 45358, - [SMALL_STATE(527)] = 45435, - [SMALL_STATE(528)] = 45512, - [SMALL_STATE(529)] = 45618, - [SMALL_STATE(530)] = 45724, - [SMALL_STATE(531)] = 45830, - [SMALL_STATE(532)] = 45936, - [SMALL_STATE(533)] = 46042, - [SMALL_STATE(534)] = 46148, - [SMALL_STATE(535)] = 46254, - [SMALL_STATE(536)] = 46360, - [SMALL_STATE(537)] = 46466, - [SMALL_STATE(538)] = 46572, - [SMALL_STATE(539)] = 46678, - [SMALL_STATE(540)] = 46784, - [SMALL_STATE(541)] = 46890, - [SMALL_STATE(542)] = 46996, - [SMALL_STATE(543)] = 47102, - [SMALL_STATE(544)] = 47208, - [SMALL_STATE(545)] = 47314, - [SMALL_STATE(546)] = 47420, - [SMALL_STATE(547)] = 47475, - [SMALL_STATE(548)] = 47530, - [SMALL_STATE(549)] = 47585, - [SMALL_STATE(550)] = 47640, - [SMALL_STATE(551)] = 47693, - [SMALL_STATE(552)] = 47746, - [SMALL_STATE(553)] = 47799, - [SMALL_STATE(554)] = 47852, - [SMALL_STATE(555)] = 47905, - [SMALL_STATE(556)] = 47960, - [SMALL_STATE(557)] = 48014, - [SMALL_STATE(558)] = 48064, - [SMALL_STATE(559)] = 48114, - [SMALL_STATE(560)] = 48168, - [SMALL_STATE(561)] = 48218, - [SMALL_STATE(562)] = 48268, - [SMALL_STATE(563)] = 48322, - [SMALL_STATE(564)] = 48376, - [SMALL_STATE(565)] = 48426, - [SMALL_STATE(566)] = 48476, - [SMALL_STATE(567)] = 48526, - [SMALL_STATE(568)] = 48576, - [SMALL_STATE(569)] = 48626, - [SMALL_STATE(570)] = 48680, - [SMALL_STATE(571)] = 48730, - [SMALL_STATE(572)] = 48780, - [SMALL_STATE(573)] = 48830, - [SMALL_STATE(574)] = 48880, - [SMALL_STATE(575)] = 48930, - [SMALL_STATE(576)] = 48980, - [SMALL_STATE(577)] = 49030, - [SMALL_STATE(578)] = 49080, - [SMALL_STATE(579)] = 49129, - [SMALL_STATE(580)] = 49178, - [SMALL_STATE(581)] = 49227, - [SMALL_STATE(582)] = 49276, - [SMALL_STATE(583)] = 49325, - [SMALL_STATE(584)] = 49374, - [SMALL_STATE(585)] = 49425, - [SMALL_STATE(586)] = 49476, - [SMALL_STATE(587)] = 49525, - [SMALL_STATE(588)] = 49574, - [SMALL_STATE(589)] = 49625, - [SMALL_STATE(590)] = 49673, - [SMALL_STATE(591)] = 49729, - [SMALL_STATE(592)] = 49795, - [SMALL_STATE(593)] = 49843, - [SMALL_STATE(594)] = 49891, - [SMALL_STATE(595)] = 49939, - [SMALL_STATE(596)] = 49987, - [SMALL_STATE(597)] = 50035, - [SMALL_STATE(598)] = 50083, - [SMALL_STATE(599)] = 50131, - [SMALL_STATE(600)] = 50179, - [SMALL_STATE(601)] = 50227, - [SMALL_STATE(602)] = 50295, - [SMALL_STATE(603)] = 50359, - [SMALL_STATE(604)] = 50407, - [SMALL_STATE(605)] = 50455, - [SMALL_STATE(606)] = 50503, - [SMALL_STATE(607)] = 50551, - [SMALL_STATE(608)] = 50599, - [SMALL_STATE(609)] = 50661, - [SMALL_STATE(610)] = 50719, - [SMALL_STATE(611)] = 50767, - [SMALL_STATE(612)] = 50815, - [SMALL_STATE(613)] = 50863, - [SMALL_STATE(614)] = 50911, - [SMALL_STATE(615)] = 50959, - [SMALL_STATE(616)] = 51007, - [SMALL_STATE(617)] = 51055, - [SMALL_STATE(618)] = 51103, - [SMALL_STATE(619)] = 51151, - [SMALL_STATE(620)] = 51199, - [SMALL_STATE(621)] = 51267, - [SMALL_STATE(622)] = 51315, - [SMALL_STATE(623)] = 51367, - [SMALL_STATE(624)] = 51415, - [SMALL_STATE(625)] = 51463, - [SMALL_STATE(626)] = 51511, - [SMALL_STATE(627)] = 51559, - [SMALL_STATE(628)] = 51607, - [SMALL_STATE(629)] = 51655, - [SMALL_STATE(630)] = 51723, - [SMALL_STATE(631)] = 51771, - [SMALL_STATE(632)] = 51819, - [SMALL_STATE(633)] = 51867, - [SMALL_STATE(634)] = 51915, - [SMALL_STATE(635)] = 51963, - [SMALL_STATE(636)] = 52031, - [SMALL_STATE(637)] = 52079, - [SMALL_STATE(638)] = 52147, - [SMALL_STATE(639)] = 52198, - [SMALL_STATE(640)] = 52249, - [SMALL_STATE(641)] = 52300, - [SMALL_STATE(642)] = 52350, - [SMALL_STATE(643)] = 52400, - [SMALL_STATE(644)] = 52446, - [SMALL_STATE(645)] = 52495, - [SMALL_STATE(646)] = 52540, - [SMALL_STATE(647)] = 52585, - [SMALL_STATE(648)] = 52630, - [SMALL_STATE(649)] = 52675, - [SMALL_STATE(650)] = 52724, - [SMALL_STATE(651)] = 52769, - [SMALL_STATE(652)] = 52818, - [SMALL_STATE(653)] = 52867, - [SMALL_STATE(654)] = 52912, - [SMALL_STATE(655)] = 52961, - [SMALL_STATE(656)] = 53012, - [SMALL_STATE(657)] = 53057, - [SMALL_STATE(658)] = 53106, - [SMALL_STATE(659)] = 53151, - [SMALL_STATE(660)] = 53196, - [SMALL_STATE(661)] = 53247, - [SMALL_STATE(662)] = 53292, - [SMALL_STATE(663)] = 53337, - [SMALL_STATE(664)] = 53382, - [SMALL_STATE(665)] = 53430, - [SMALL_STATE(666)] = 53476, - [SMALL_STATE(667)] = 53520, - [SMALL_STATE(668)] = 53564, - [SMALL_STATE(669)] = 53608, - [SMALL_STATE(670)] = 53656, - [SMALL_STATE(671)] = 53740, - [SMALL_STATE(672)] = 53824, - [SMALL_STATE(673)] = 53868, - [SMALL_STATE(674)] = 53952, - [SMALL_STATE(675)] = 54036, - [SMALL_STATE(676)] = 54084, - [SMALL_STATE(677)] = 54132, - [SMALL_STATE(678)] = 54178, - [SMALL_STATE(679)] = 54262, - [SMALL_STATE(680)] = 54308, - [SMALL_STATE(681)] = 54356, - [SMALL_STATE(682)] = 54402, - [SMALL_STATE(683)] = 54446, - [SMALL_STATE(684)] = 54530, - [SMALL_STATE(685)] = 54574, - [SMALL_STATE(686)] = 54620, - [SMALL_STATE(687)] = 54666, - [SMALL_STATE(688)] = 54710, - [SMALL_STATE(689)] = 54756, - [SMALL_STATE(690)] = 54800, - [SMALL_STATE(691)] = 54884, - [SMALL_STATE(692)] = 54932, - [SMALL_STATE(693)] = 54976, - [SMALL_STATE(694)] = 55020, - [SMALL_STATE(695)] = 55064, - [SMALL_STATE(696)] = 55108, - [SMALL_STATE(697)] = 55152, - [SMALL_STATE(698)] = 55196, - [SMALL_STATE(699)] = 55240, - [SMALL_STATE(700)] = 55284, - [SMALL_STATE(701)] = 55328, - [SMALL_STATE(702)] = 55372, - [SMALL_STATE(703)] = 55416, - [SMALL_STATE(704)] = 55460, - [SMALL_STATE(705)] = 55504, - [SMALL_STATE(706)] = 55547, - [SMALL_STATE(707)] = 55590, - [SMALL_STATE(708)] = 55633, - [SMALL_STATE(709)] = 55676, - [SMALL_STATE(710)] = 55719, - [SMALL_STATE(711)] = 55762, - [SMALL_STATE(712)] = 55805, - [SMALL_STATE(713)] = 55848, - [SMALL_STATE(714)] = 55891, - [SMALL_STATE(715)] = 55934, - [SMALL_STATE(716)] = 55977, - [SMALL_STATE(717)] = 56020, - [SMALL_STATE(718)] = 56063, - [SMALL_STATE(719)] = 56106, - [SMALL_STATE(720)] = 56149, - [SMALL_STATE(721)] = 56192, - [SMALL_STATE(722)] = 56235, - [SMALL_STATE(723)] = 56278, - [SMALL_STATE(724)] = 56321, - [SMALL_STATE(725)] = 56364, - [SMALL_STATE(726)] = 56407, - [SMALL_STATE(727)] = 56488, - [SMALL_STATE(728)] = 56531, - [SMALL_STATE(729)] = 56574, - [SMALL_STATE(730)] = 56617, - [SMALL_STATE(731)] = 56660, - [SMALL_STATE(732)] = 56703, - [SMALL_STATE(733)] = 56746, - [SMALL_STATE(734)] = 56789, - [SMALL_STATE(735)] = 56832, - [SMALL_STATE(736)] = 56875, - [SMALL_STATE(737)] = 56918, - [SMALL_STATE(738)] = 56975, - [SMALL_STATE(739)] = 57018, - [SMALL_STATE(740)] = 57061, - [SMALL_STATE(741)] = 57104, - [SMALL_STATE(742)] = 57147, - [SMALL_STATE(743)] = 57190, - [SMALL_STATE(744)] = 57233, - [SMALL_STATE(745)] = 57276, - [SMALL_STATE(746)] = 57319, - [SMALL_STATE(747)] = 57362, - [SMALL_STATE(748)] = 57405, - [SMALL_STATE(749)] = 57448, - [SMALL_STATE(750)] = 57491, - [SMALL_STATE(751)] = 57534, - [SMALL_STATE(752)] = 57577, - [SMALL_STATE(753)] = 57620, - [SMALL_STATE(754)] = 57663, - [SMALL_STATE(755)] = 57706, - [SMALL_STATE(756)] = 57749, - [SMALL_STATE(757)] = 57792, - [SMALL_STATE(758)] = 57875, - [SMALL_STATE(759)] = 57918, - [SMALL_STATE(760)] = 57975, - [SMALL_STATE(761)] = 58018, - [SMALL_STATE(762)] = 58075, - [SMALL_STATE(763)] = 58118, - [SMALL_STATE(764)] = 58161, - [SMALL_STATE(765)] = 58204, - [SMALL_STATE(766)] = 58247, - [SMALL_STATE(767)] = 58330, - [SMALL_STATE(768)] = 58373, - [SMALL_STATE(769)] = 58416, - [SMALL_STATE(770)] = 58473, - [SMALL_STATE(771)] = 58516, - [SMALL_STATE(772)] = 58559, - [SMALL_STATE(773)] = 58640, - [SMALL_STATE(774)] = 58697, - [SMALL_STATE(775)] = 58780, - [SMALL_STATE(776)] = 58823, - [SMALL_STATE(777)] = 58866, - [SMALL_STATE(778)] = 58909, - [SMALL_STATE(779)] = 58952, - [SMALL_STATE(780)] = 58995, - [SMALL_STATE(781)] = 59038, - [SMALL_STATE(782)] = 59081, - [SMALL_STATE(783)] = 59124, - [SMALL_STATE(784)] = 59167, - [SMALL_STATE(785)] = 59210, - [SMALL_STATE(786)] = 59253, - [SMALL_STATE(787)] = 59296, - [SMALL_STATE(788)] = 59339, - [SMALL_STATE(789)] = 59382, - [SMALL_STATE(790)] = 59425, - [SMALL_STATE(791)] = 59468, - [SMALL_STATE(792)] = 59525, - [SMALL_STATE(793)] = 59568, - [SMALL_STATE(794)] = 59640, - [SMALL_STATE(795)] = 59712, - [SMALL_STATE(796)] = 59754, - [SMALL_STATE(797)] = 59826, - [SMALL_STATE(798)] = 59898, - [SMALL_STATE(799)] = 59970, - [SMALL_STATE(800)] = 60042, - [SMALL_STATE(801)] = 60114, - [SMALL_STATE(802)] = 60170, - [SMALL_STATE(803)] = 60242, - [SMALL_STATE(804)] = 60314, - [SMALL_STATE(805)] = 60364, - [SMALL_STATE(806)] = 60436, - [SMALL_STATE(807)] = 60508, - [SMALL_STATE(808)] = 60560, - [SMALL_STATE(809)] = 60614, - [SMALL_STATE(810)] = 60686, - [SMALL_STATE(811)] = 60746, - [SMALL_STATE(812)] = 60818, - [SMALL_STATE(813)] = 60874, - [SMALL_STATE(814)] = 60930, - [SMALL_STATE(815)] = 60988, - [SMALL_STATE(816)] = 61032, - [SMALL_STATE(817)] = 61104, - [SMALL_STATE(818)] = 61150, - [SMALL_STATE(819)] = 61222, - [SMALL_STATE(820)] = 61278, - [SMALL_STATE(821)] = 61338, - [SMALL_STATE(822)] = 61398, - [SMALL_STATE(823)] = 61451, - [SMALL_STATE(824)] = 61524, - [SMALL_STATE(825)] = 61601, - [SMALL_STATE(826)] = 61678, - [SMALL_STATE(827)] = 61753, - [SMALL_STATE(828)] = 61806, - [SMALL_STATE(829)] = 61883, - [SMALL_STATE(830)] = 61958, - [SMALL_STATE(831)] = 62035, - [SMALL_STATE(832)] = 62112, - [SMALL_STATE(833)] = 62189, - [SMALL_STATE(834)] = 62266, - [SMALL_STATE(835)] = 62319, - [SMALL_STATE(836)] = 62393, - [SMALL_STATE(837)] = 62467, - [SMALL_STATE(838)] = 62541, - [SMALL_STATE(839)] = 62615, - [SMALL_STATE(840)] = 62689, - [SMALL_STATE(841)] = 62763, - [SMALL_STATE(842)] = 62837, - [SMALL_STATE(843)] = 62911, - [SMALL_STATE(844)] = 62974, - [SMALL_STATE(845)] = 63037, - [SMALL_STATE(846)] = 63100, - [SMALL_STATE(847)] = 63163, - [SMALL_STATE(848)] = 63234, - [SMALL_STATE(849)] = 63291, - [SMALL_STATE(850)] = 63362, - [SMALL_STATE(851)] = 63433, - [SMALL_STATE(852)] = 63476, - [SMALL_STATE(853)] = 63519, - [SMALL_STATE(854)] = 63582, - [SMALL_STATE(855)] = 63645, - [SMALL_STATE(856)] = 63716, - [SMALL_STATE(857)] = 63759, - [SMALL_STATE(858)] = 63830, - [SMALL_STATE(859)] = 63901, - [SMALL_STATE(860)] = 63972, - [SMALL_STATE(861)] = 64035, - [SMALL_STATE(862)] = 64106, - [SMALL_STATE(863)] = 64148, - [SMALL_STATE(864)] = 64214, - [SMALL_STATE(865)] = 64280, - [SMALL_STATE(866)] = 64340, - [SMALL_STATE(867)] = 64406, - [SMALL_STATE(868)] = 64448, - [SMALL_STATE(869)] = 64490, - [SMALL_STATE(870)] = 64528, - [SMALL_STATE(871)] = 64566, - [SMALL_STATE(872)] = 64604, - [SMALL_STATE(873)] = 64664, - [SMALL_STATE(874)] = 64706, - [SMALL_STATE(875)] = 64772, - [SMALL_STATE(876)] = 64810, - [SMALL_STATE(877)] = 64848, - [SMALL_STATE(878)] = 64886, - [SMALL_STATE(879)] = 64946, - [SMALL_STATE(880)] = 65006, - [SMALL_STATE(881)] = 65072, - [SMALL_STATE(882)] = 65132, - [SMALL_STATE(883)] = 65198, - [SMALL_STATE(884)] = 65236, - [SMALL_STATE(885)] = 65302, - [SMALL_STATE(886)] = 65368, - [SMALL_STATE(887)] = 65436, - [SMALL_STATE(888)] = 65474, - [SMALL_STATE(889)] = 65540, - [SMALL_STATE(890)] = 65578, - [SMALL_STATE(891)] = 65616, - [SMALL_STATE(892)] = 65654, - [SMALL_STATE(893)] = 65720, - [SMALL_STATE(894)] = 65786, - [SMALL_STATE(895)] = 65824, - [SMALL_STATE(896)] = 65862, - [SMALL_STATE(897)] = 65900, - [SMALL_STATE(898)] = 65968, - [SMALL_STATE(899)] = 66034, - [SMALL_STATE(900)] = 66094, - [SMALL_STATE(901)] = 66154, - [SMALL_STATE(902)] = 66214, - [SMALL_STATE(903)] = 66280, - [SMALL_STATE(904)] = 66318, - [SMALL_STATE(905)] = 66356, - [SMALL_STATE(906)] = 66393, - [SMALL_STATE(907)] = 66456, - [SMALL_STATE(908)] = 66521, - [SMALL_STATE(909)] = 66582, - [SMALL_STATE(910)] = 66645, - [SMALL_STATE(911)] = 66690, - [SMALL_STATE(912)] = 66727, - [SMALL_STATE(913)] = 66768, - [SMALL_STATE(914)] = 66823, - [SMALL_STATE(915)] = 66860, - [SMALL_STATE(916)] = 66915, - [SMALL_STATE(917)] = 66978, - [SMALL_STATE(918)] = 67041, - [SMALL_STATE(919)] = 67104, - [SMALL_STATE(920)] = 67159, - [SMALL_STATE(921)] = 67196, - [SMALL_STATE(922)] = 67259, - [SMALL_STATE(923)] = 67322, - [SMALL_STATE(924)] = 67377, - [SMALL_STATE(925)] = 67442, - [SMALL_STATE(926)] = 67505, - [SMALL_STATE(927)] = 67568, - [SMALL_STATE(928)] = 67623, - [SMALL_STATE(929)] = 67660, - [SMALL_STATE(930)] = 67723, - [SMALL_STATE(931)] = 67788, - [SMALL_STATE(932)] = 67827, - [SMALL_STATE(933)] = 67890, - [SMALL_STATE(934)] = 67929, - [SMALL_STATE(935)] = 67992, - [SMALL_STATE(936)] = 68031, - [SMALL_STATE(937)] = 68078, - [SMALL_STATE(938)] = 68127, - [SMALL_STATE(939)] = 68178, - [SMALL_STATE(940)] = 68231, - [SMALL_STATE(941)] = 68268, - [SMALL_STATE(942)] = 68323, - [SMALL_STATE(943)] = 68360, - [SMALL_STATE(944)] = 68397, - [SMALL_STATE(945)] = 68452, - [SMALL_STATE(946)] = 68515, - [SMALL_STATE(947)] = 68575, - [SMALL_STATE(948)] = 68629, - [SMALL_STATE(949)] = 68689, - [SMALL_STATE(950)] = 68749, - [SMALL_STATE(951)] = 68803, - [SMALL_STATE(952)] = 68863, - [SMALL_STATE(953)] = 68899, - [SMALL_STATE(954)] = 68935, - [SMALL_STATE(955)] = 68989, - [SMALL_STATE(956)] = 69049, - [SMALL_STATE(957)] = 69085, - [SMALL_STATE(958)] = 69121, - [SMALL_STATE(959)] = 69161, - [SMALL_STATE(960)] = 69213, - [SMALL_STATE(961)] = 69249, - [SMALL_STATE(962)] = 69303, - [SMALL_STATE(963)] = 69339, - [SMALL_STATE(964)] = 69375, - [SMALL_STATE(965)] = 69411, - [SMALL_STATE(966)] = 69447, - [SMALL_STATE(967)] = 69497, - [SMALL_STATE(968)] = 69551, - [SMALL_STATE(969)] = 69599, - [SMALL_STATE(970)] = 69645, - [SMALL_STATE(971)] = 69699, - [SMALL_STATE(972)] = 69743, - [SMALL_STATE(973)] = 69779, - [SMALL_STATE(974)] = 69839, - [SMALL_STATE(975)] = 69899, - [SMALL_STATE(976)] = 69953, - [SMALL_STATE(977)] = 70013, - [SMALL_STATE(978)] = 70073, - [SMALL_STATE(979)] = 70127, - [SMALL_STATE(980)] = 70167, - [SMALL_STATE(981)] = 70227, - [SMALL_STATE(982)] = 70281, - [SMALL_STATE(983)] = 70341, - [SMALL_STATE(984)] = 70401, - [SMALL_STATE(985)] = 70437, - [SMALL_STATE(986)] = 70491, - [SMALL_STATE(987)] = 70551, - [SMALL_STATE(988)] = 70611, - [SMALL_STATE(989)] = 70647, - [SMALL_STATE(990)] = 70707, - [SMALL_STATE(991)] = 70767, - [SMALL_STATE(992)] = 70821, - [SMALL_STATE(993)] = 70875, - [SMALL_STATE(994)] = 70929, - [SMALL_STATE(995)] = 70965, - [SMALL_STATE(996)] = 71019, - [SMALL_STATE(997)] = 71073, - [SMALL_STATE(998)] = 71127, - [SMALL_STATE(999)] = 71181, - [SMALL_STATE(1000)] = 71217, - [SMALL_STATE(1001)] = 71271, - [SMALL_STATE(1002)] = 71325, - [SMALL_STATE(1003)] = 71379, - [SMALL_STATE(1004)] = 71433, - [SMALL_STATE(1005)] = 71469, - [SMALL_STATE(1006)] = 71529, - [SMALL_STATE(1007)] = 71583, - [SMALL_STATE(1008)] = 71637, - [SMALL_STATE(1009)] = 71691, - [SMALL_STATE(1010)] = 71745, - [SMALL_STATE(1011)] = 71799, - [SMALL_STATE(1012)] = 71835, - [SMALL_STATE(1013)] = 71895, - [SMALL_STATE(1014)] = 71955, - [SMALL_STATE(1015)] = 71991, - [SMALL_STATE(1016)] = 72029, - [SMALL_STATE(1017)] = 72083, - [SMALL_STATE(1018)] = 72137, - [SMALL_STATE(1019)] = 72191, - [SMALL_STATE(1020)] = 72245, - [SMALL_STATE(1021)] = 72281, - [SMALL_STATE(1022)] = 72317, - [SMALL_STATE(1023)] = 72371, - [SMALL_STATE(1024)] = 72407, - [SMALL_STATE(1025)] = 72461, - [SMALL_STATE(1026)] = 72518, - [SMALL_STATE(1027)] = 72555, - [SMALL_STATE(1028)] = 72612, - [SMALL_STATE(1029)] = 72669, - [SMALL_STATE(1030)] = 72726, - [SMALL_STATE(1031)] = 72763, - [SMALL_STATE(1032)] = 72798, - [SMALL_STATE(1033)] = 72855, - [SMALL_STATE(1034)] = 72912, - [SMALL_STATE(1035)] = 72969, - [SMALL_STATE(1036)] = 73026, - [SMALL_STATE(1037)] = 73083, - [SMALL_STATE(1038)] = 73140, - [SMALL_STATE(1039)] = 73174, - [SMALL_STATE(1040)] = 73222, - [SMALL_STATE(1041)] = 73256, - [SMALL_STATE(1042)] = 73290, - [SMALL_STATE(1043)] = 73332, - [SMALL_STATE(1044)] = 73382, - [SMALL_STATE(1045)] = 73416, - [SMALL_STATE(1046)] = 73450, - [SMALL_STATE(1047)] = 73484, - [SMALL_STATE(1048)] = 73518, - [SMALL_STATE(1049)] = 73552, - [SMALL_STATE(1050)] = 73590, - [SMALL_STATE(1051)] = 73636, - [SMALL_STATE(1052)] = 73680, - [SMALL_STATE(1053)] = 73722, - [SMALL_STATE(1054)] = 73756, - [SMALL_STATE(1055)] = 73806, - [SMALL_STATE(1056)] = 73840, - [SMALL_STATE(1057)] = 73874, - [SMALL_STATE(1058)] = 73908, - [SMALL_STATE(1059)] = 73942, - [SMALL_STATE(1060)] = 73976, - [SMALL_STATE(1061)] = 74010, - [SMALL_STATE(1062)] = 74048, - [SMALL_STATE(1063)] = 74082, - [SMALL_STATE(1064)] = 74116, - [SMALL_STATE(1065)] = 74150, - [SMALL_STATE(1066)] = 74184, - [SMALL_STATE(1067)] = 74218, - [SMALL_STATE(1068)] = 74266, - [SMALL_STATE(1069)] = 74312, - [SMALL_STATE(1070)] = 74356, - [SMALL_STATE(1071)] = 74390, - [SMALL_STATE(1072)] = 74424, - [SMALL_STATE(1073)] = 74458, - [SMALL_STATE(1074)] = 74492, - [SMALL_STATE(1075)] = 74526, - [SMALL_STATE(1076)] = 74560, - [SMALL_STATE(1077)] = 74594, - [SMALL_STATE(1078)] = 74626, - [SMALL_STATE(1079)] = 74676, - [SMALL_STATE(1080)] = 74710, - [SMALL_STATE(1081)] = 74744, - [SMALL_STATE(1082)] = 74791, - [SMALL_STATE(1083)] = 74838, - [SMALL_STATE(1084)] = 74885, - [SMALL_STATE(1085)] = 74932, - [SMALL_STATE(1086)] = 74979, - [SMALL_STATE(1087)] = 75026, - [SMALL_STATE(1088)] = 75054, - [SMALL_STATE(1089)] = 75098, - [SMALL_STATE(1090)] = 75142, - [SMALL_STATE(1091)] = 75186, - [SMALL_STATE(1092)] = 75230, - [SMALL_STATE(1093)] = 75274, - [SMALL_STATE(1094)] = 75300, - [SMALL_STATE(1095)] = 75344, - [SMALL_STATE(1096)] = 75388, - [SMALL_STATE(1097)] = 75432, - [SMALL_STATE(1098)] = 75462, - [SMALL_STATE(1099)] = 75506, - [SMALL_STATE(1100)] = 75550, - [SMALL_STATE(1101)] = 75591, - [SMALL_STATE(1102)] = 75632, - [SMALL_STATE(1103)] = 75673, - [SMALL_STATE(1104)] = 75698, - [SMALL_STATE(1105)] = 75739, - [SMALL_STATE(1106)] = 75782, - [SMALL_STATE(1107)] = 75825, - [SMALL_STATE(1108)] = 75866, - [SMALL_STATE(1109)] = 75907, - [SMALL_STATE(1110)] = 75948, - [SMALL_STATE(1111)] = 75991, - [SMALL_STATE(1112)] = 76032, - [SMALL_STATE(1113)] = 76073, - [SMALL_STATE(1114)] = 76102, - [SMALL_STATE(1115)] = 76143, - [SMALL_STATE(1116)] = 76184, - [SMALL_STATE(1117)] = 76222, - [SMALL_STATE(1118)] = 76260, - [SMALL_STATE(1119)] = 76298, - [SMALL_STATE(1120)] = 76336, - [SMALL_STATE(1121)] = 76374, - [SMALL_STATE(1122)] = 76412, - [SMALL_STATE(1123)] = 76450, - [SMALL_STATE(1124)] = 76488, - [SMALL_STATE(1125)] = 76526, - [SMALL_STATE(1126)] = 76566, - [SMALL_STATE(1127)] = 76606, - [SMALL_STATE(1128)] = 76644, - [SMALL_STATE(1129)] = 76684, - [SMALL_STATE(1130)] = 76722, - [SMALL_STATE(1131)] = 76760, - [SMALL_STATE(1132)] = 76784, - [SMALL_STATE(1133)] = 76822, - [SMALL_STATE(1134)] = 76846, - [SMALL_STATE(1135)] = 76884, - [SMALL_STATE(1136)] = 76922, - [SMALL_STATE(1137)] = 76960, - [SMALL_STATE(1138)] = 76998, - [SMALL_STATE(1139)] = 77036, - [SMALL_STATE(1140)] = 77074, - [SMALL_STATE(1141)] = 77098, - [SMALL_STATE(1142)] = 77136, - [SMALL_STATE(1143)] = 77174, - [SMALL_STATE(1144)] = 77212, - [SMALL_STATE(1145)] = 77236, - [SMALL_STATE(1146)] = 77274, - [SMALL_STATE(1147)] = 77298, - [SMALL_STATE(1148)] = 77338, - [SMALL_STATE(1149)] = 77378, - [SMALL_STATE(1150)] = 77416, - [SMALL_STATE(1151)] = 77454, - [SMALL_STATE(1152)] = 77478, - [SMALL_STATE(1153)] = 77516, - [SMALL_STATE(1154)] = 77540, - [SMALL_STATE(1155)] = 77564, - [SMALL_STATE(1156)] = 77602, - [SMALL_STATE(1157)] = 77642, - [SMALL_STATE(1158)] = 77666, - [SMALL_STATE(1159)] = 77704, - [SMALL_STATE(1160)] = 77728, - [SMALL_STATE(1161)] = 77752, - [SMALL_STATE(1162)] = 77790, - [SMALL_STATE(1163)] = 77830, - [SMALL_STATE(1164)] = 77854, - [SMALL_STATE(1165)] = 77877, - [SMALL_STATE(1166)] = 77914, - [SMALL_STATE(1167)] = 77937, - [SMALL_STATE(1168)] = 77964, - [SMALL_STATE(1169)] = 77987, - [SMALL_STATE(1170)] = 78010, - [SMALL_STATE(1171)] = 78037, - [SMALL_STATE(1172)] = 78060, - [SMALL_STATE(1173)] = 78083, - [SMALL_STATE(1174)] = 78120, - [SMALL_STATE(1175)] = 78143, - [SMALL_STATE(1176)] = 78170, - [SMALL_STATE(1177)] = 78193, - [SMALL_STATE(1178)] = 78230, - [SMALL_STATE(1179)] = 78253, - [SMALL_STATE(1180)] = 78276, - [SMALL_STATE(1181)] = 78299, - [SMALL_STATE(1182)] = 78322, - [SMALL_STATE(1183)] = 78345, - [SMALL_STATE(1184)] = 78368, - [SMALL_STATE(1185)] = 78391, - [SMALL_STATE(1186)] = 78428, - [SMALL_STATE(1187)] = 78451, - [SMALL_STATE(1188)] = 78474, - [SMALL_STATE(1189)] = 78497, - [SMALL_STATE(1190)] = 78520, - [SMALL_STATE(1191)] = 78543, - [SMALL_STATE(1192)] = 78566, - [SMALL_STATE(1193)] = 78589, - [SMALL_STATE(1194)] = 78612, - [SMALL_STATE(1195)] = 78635, - [SMALL_STATE(1196)] = 78662, - [SMALL_STATE(1197)] = 78685, - [SMALL_STATE(1198)] = 78708, - [SMALL_STATE(1199)] = 78731, - [SMALL_STATE(1200)] = 78754, - [SMALL_STATE(1201)] = 78782, - [SMALL_STATE(1202)] = 78808, - [SMALL_STATE(1203)] = 78836, - [SMALL_STATE(1204)] = 78860, - [SMALL_STATE(1205)] = 78885, - [SMALL_STATE(1206)] = 78926, - [SMALL_STATE(1207)] = 78951, - [SMALL_STATE(1208)] = 78972, - [SMALL_STATE(1209)] = 79013, - [SMALL_STATE(1210)] = 79034, - [SMALL_STATE(1211)] = 79055, - [SMALL_STATE(1212)] = 79080, - [SMALL_STATE(1213)] = 79101, - [SMALL_STATE(1214)] = 79122, - [SMALL_STATE(1215)] = 79143, - [SMALL_STATE(1216)] = 79164, - [SMALL_STATE(1217)] = 79189, - [SMALL_STATE(1218)] = 79230, - [SMALL_STATE(1219)] = 79251, - [SMALL_STATE(1220)] = 79272, - [SMALL_STATE(1221)] = 79313, - [SMALL_STATE(1222)] = 79354, - [SMALL_STATE(1223)] = 79379, - [SMALL_STATE(1224)] = 79420, - [SMALL_STATE(1225)] = 79441, - [SMALL_STATE(1226)] = 79461, - [SMALL_STATE(1227)] = 79481, - [SMALL_STATE(1228)] = 79501, - [SMALL_STATE(1229)] = 79521, - [SMALL_STATE(1230)] = 79559, - [SMALL_STATE(1231)] = 79579, - [SMALL_STATE(1232)] = 79599, - [SMALL_STATE(1233)] = 79633, - [SMALL_STATE(1234)] = 79655, - [SMALL_STATE(1235)] = 79677, - [SMALL_STATE(1236)] = 79697, - [SMALL_STATE(1237)] = 79717, - [SMALL_STATE(1238)] = 79751, - [SMALL_STATE(1239)] = 79773, - [SMALL_STATE(1240)] = 79792, - [SMALL_STATE(1241)] = 79811, - [SMALL_STATE(1242)] = 79834, - [SMALL_STATE(1243)] = 79861, - [SMALL_STATE(1244)] = 79880, - [SMALL_STATE(1245)] = 79899, - [SMALL_STATE(1246)] = 79918, - [SMALL_STATE(1247)] = 79937, - [SMALL_STATE(1248)] = 79956, - [SMALL_STATE(1249)] = 79975, - [SMALL_STATE(1250)] = 79994, - [SMALL_STATE(1251)] = 80013, - [SMALL_STATE(1252)] = 80032, - [SMALL_STATE(1253)] = 80051, - [SMALL_STATE(1254)] = 80070, - [SMALL_STATE(1255)] = 80089, - [SMALL_STATE(1256)] = 80108, - [SMALL_STATE(1257)] = 80127, - [SMALL_STATE(1258)] = 80146, - [SMALL_STATE(1259)] = 80165, - [SMALL_STATE(1260)] = 80184, - [SMALL_STATE(1261)] = 80203, - [SMALL_STATE(1262)] = 80222, - [SMALL_STATE(1263)] = 80241, - [SMALL_STATE(1264)] = 80262, - [SMALL_STATE(1265)] = 80281, - [SMALL_STATE(1266)] = 80302, - [SMALL_STATE(1267)] = 80321, - [SMALL_STATE(1268)] = 80353, - [SMALL_STATE(1269)] = 80371, - [SMALL_STATE(1270)] = 80389, - [SMALL_STATE(1271)] = 80421, - [SMALL_STATE(1272)] = 80441, - [SMALL_STATE(1273)] = 80459, - [SMALL_STATE(1274)] = 80491, - [SMALL_STATE(1275)] = 80518, - [SMALL_STATE(1276)] = 80547, - [SMALL_STATE(1277)] = 80576, - [SMALL_STATE(1278)] = 80603, - [SMALL_STATE(1279)] = 80632, - [SMALL_STATE(1280)] = 80659, - [SMALL_STATE(1281)] = 80686, - [SMALL_STATE(1282)] = 80715, - [SMALL_STATE(1283)] = 80742, - [SMALL_STATE(1284)] = 80769, - [SMALL_STATE(1285)] = 80786, - [SMALL_STATE(1286)] = 80815, - [SMALL_STATE(1287)] = 80842, - [SMALL_STATE(1288)] = 80869, - [SMALL_STATE(1289)] = 80898, - [SMALL_STATE(1290)] = 80927, - [SMALL_STATE(1291)] = 80953, - [SMALL_STATE(1292)] = 80975, - [SMALL_STATE(1293)] = 80997, - [SMALL_STATE(1294)] = 81019, - [SMALL_STATE(1295)] = 81041, - [SMALL_STATE(1296)] = 81063, - [SMALL_STATE(1297)] = 81083, - [SMALL_STATE(1298)] = 81107, - [SMALL_STATE(1299)] = 81129, - [SMALL_STATE(1300)] = 81151, - [SMALL_STATE(1301)] = 81173, - [SMALL_STATE(1302)] = 81195, - [SMALL_STATE(1303)] = 81219, - [SMALL_STATE(1304)] = 81241, - [SMALL_STATE(1305)] = 81265, - [SMALL_STATE(1306)] = 81289, - [SMALL_STATE(1307)] = 81313, - [SMALL_STATE(1308)] = 81335, - [SMALL_STATE(1309)] = 81357, - [SMALL_STATE(1310)] = 81381, - [SMALL_STATE(1311)] = 81405, - [SMALL_STATE(1312)] = 81427, - [SMALL_STATE(1313)] = 81449, - [SMALL_STATE(1314)] = 81471, - [SMALL_STATE(1315)] = 81495, - [SMALL_STATE(1316)] = 81519, - [SMALL_STATE(1317)] = 81543, - [SMALL_STATE(1318)] = 81565, - [SMALL_STATE(1319)] = 81587, - [SMALL_STATE(1320)] = 81609, - [SMALL_STATE(1321)] = 81631, - [SMALL_STATE(1322)] = 81653, - [SMALL_STATE(1323)] = 81671, - [SMALL_STATE(1324)] = 81693, - [SMALL_STATE(1325)] = 81715, - [SMALL_STATE(1326)] = 81737, - [SMALL_STATE(1327)] = 81761, - [SMALL_STATE(1328)] = 81785, - [SMALL_STATE(1329)] = 81807, - [SMALL_STATE(1330)] = 81829, - [SMALL_STATE(1331)] = 81851, - [SMALL_STATE(1332)] = 81873, - [SMALL_STATE(1333)] = 81896, - [SMALL_STATE(1334)] = 81915, - [SMALL_STATE(1335)] = 81934, - [SMALL_STATE(1336)] = 81955, - [SMALL_STATE(1337)] = 81974, - [SMALL_STATE(1338)] = 81997, - [SMALL_STATE(1339)] = 82020, - [SMALL_STATE(1340)] = 82039, - [SMALL_STATE(1341)] = 82058, - [SMALL_STATE(1342)] = 82081, - [SMALL_STATE(1343)] = 82100, - [SMALL_STATE(1344)] = 82119, - [SMALL_STATE(1345)] = 82142, - [SMALL_STATE(1346)] = 82161, - [SMALL_STATE(1347)] = 82180, - [SMALL_STATE(1348)] = 82203, - [SMALL_STATE(1349)] = 82222, - [SMALL_STATE(1350)] = 82241, - [SMALL_STATE(1351)] = 82260, - [SMALL_STATE(1352)] = 82276, - [SMALL_STATE(1353)] = 82292, - [SMALL_STATE(1354)] = 82310, - [SMALL_STATE(1355)] = 82330, - [SMALL_STATE(1356)] = 82348, - [SMALL_STATE(1357)] = 82362, - [SMALL_STATE(1358)] = 82382, - [SMALL_STATE(1359)] = 82400, - [SMALL_STATE(1360)] = 82418, - [SMALL_STATE(1361)] = 82436, - [SMALL_STATE(1362)] = 82456, - [SMALL_STATE(1363)] = 82472, - [SMALL_STATE(1364)] = 82492, - [SMALL_STATE(1365)] = 82508, - [SMALL_STATE(1366)] = 82528, - [SMALL_STATE(1367)] = 82546, - [SMALL_STATE(1368)] = 82566, - [SMALL_STATE(1369)] = 82584, - [SMALL_STATE(1370)] = 82602, - [SMALL_STATE(1371)] = 82618, - [SMALL_STATE(1372)] = 82638, - [SMALL_STATE(1373)] = 82658, - [SMALL_STATE(1374)] = 82676, - [SMALL_STATE(1375)] = 82696, - [SMALL_STATE(1376)] = 82714, - [SMALL_STATE(1377)] = 82732, - [SMALL_STATE(1378)] = 82752, - [SMALL_STATE(1379)] = 82772, - [SMALL_STATE(1380)] = 82790, - [SMALL_STATE(1381)] = 82810, - [SMALL_STATE(1382)] = 82828, - [SMALL_STATE(1383)] = 82846, - [SMALL_STATE(1384)] = 82864, - [SMALL_STATE(1385)] = 82882, - [SMALL_STATE(1386)] = 82900, - [SMALL_STATE(1387)] = 82920, - [SMALL_STATE(1388)] = 82940, - [SMALL_STATE(1389)] = 82960, - [SMALL_STATE(1390)] = 82980, - [SMALL_STATE(1391)] = 82998, - [SMALL_STATE(1392)] = 83018, - [SMALL_STATE(1393)] = 83038, - [SMALL_STATE(1394)] = 83054, - [SMALL_STATE(1395)] = 83072, - [SMALL_STATE(1396)] = 83088, - [SMALL_STATE(1397)] = 83106, - [SMALL_STATE(1398)] = 83126, - [SMALL_STATE(1399)] = 83144, - [SMALL_STATE(1400)] = 83164, - [SMALL_STATE(1401)] = 83182, - [SMALL_STATE(1402)] = 83196, - [SMALL_STATE(1403)] = 83214, - [SMALL_STATE(1404)] = 83232, - [SMALL_STATE(1405)] = 83250, - [SMALL_STATE(1406)] = 83268, - [SMALL_STATE(1407)] = 83284, - [SMALL_STATE(1408)] = 83304, - [SMALL_STATE(1409)] = 83321, - [SMALL_STATE(1410)] = 83338, - [SMALL_STATE(1411)] = 83355, - [SMALL_STATE(1412)] = 83372, - [SMALL_STATE(1413)] = 83389, - [SMALL_STATE(1414)] = 83406, - [SMALL_STATE(1415)] = 83423, - [SMALL_STATE(1416)] = 83440, - [SMALL_STATE(1417)] = 83457, - [SMALL_STATE(1418)] = 83470, - [SMALL_STATE(1419)] = 83487, - [SMALL_STATE(1420)] = 83504, - [SMALL_STATE(1421)] = 83517, - [SMALL_STATE(1422)] = 83534, - [SMALL_STATE(1423)] = 83551, - [SMALL_STATE(1424)] = 83568, - [SMALL_STATE(1425)] = 83585, - [SMALL_STATE(1426)] = 83598, - [SMALL_STATE(1427)] = 83615, - [SMALL_STATE(1428)] = 83628, - [SMALL_STATE(1429)] = 83645, - [SMALL_STATE(1430)] = 83662, - [SMALL_STATE(1431)] = 83679, - [SMALL_STATE(1432)] = 83696, - [SMALL_STATE(1433)] = 83709, - [SMALL_STATE(1434)] = 83726, - [SMALL_STATE(1435)] = 83741, - [SMALL_STATE(1436)] = 83758, - [SMALL_STATE(1437)] = 83775, - [SMALL_STATE(1438)] = 83792, - [SMALL_STATE(1439)] = 83809, - [SMALL_STATE(1440)] = 83826, - [SMALL_STATE(1441)] = 83843, - [SMALL_STATE(1442)] = 83860, - [SMALL_STATE(1443)] = 83877, - [SMALL_STATE(1444)] = 83890, - [SMALL_STATE(1445)] = 83907, - [SMALL_STATE(1446)] = 83924, - [SMALL_STATE(1447)] = 83937, - [SMALL_STATE(1448)] = 83954, - [SMALL_STATE(1449)] = 83967, - [SMALL_STATE(1450)] = 83984, - [SMALL_STATE(1451)] = 84001, - [SMALL_STATE(1452)] = 84014, - [SMALL_STATE(1453)] = 84031, - [SMALL_STATE(1454)] = 84048, - [SMALL_STATE(1455)] = 84061, - [SMALL_STATE(1456)] = 84074, - [SMALL_STATE(1457)] = 84091, - [SMALL_STATE(1458)] = 84108, - [SMALL_STATE(1459)] = 84121, - [SMALL_STATE(1460)] = 84138, - [SMALL_STATE(1461)] = 84155, - [SMALL_STATE(1462)] = 84172, - [SMALL_STATE(1463)] = 84189, - [SMALL_STATE(1464)] = 84206, - [SMALL_STATE(1465)] = 84219, - [SMALL_STATE(1466)] = 84236, - [SMALL_STATE(1467)] = 84253, - [SMALL_STATE(1468)] = 84270, - [SMALL_STATE(1469)] = 84287, - [SMALL_STATE(1470)] = 84304, - [SMALL_STATE(1471)] = 84321, - [SMALL_STATE(1472)] = 84336, - [SMALL_STATE(1473)] = 84349, - [SMALL_STATE(1474)] = 84366, - [SMALL_STATE(1475)] = 84383, - [SMALL_STATE(1476)] = 84400, - [SMALL_STATE(1477)] = 84417, - [SMALL_STATE(1478)] = 84434, - [SMALL_STATE(1479)] = 84447, - [SMALL_STATE(1480)] = 84464, - [SMALL_STATE(1481)] = 84477, - [SMALL_STATE(1482)] = 84494, - [SMALL_STATE(1483)] = 84511, - [SMALL_STATE(1484)] = 84528, - [SMALL_STATE(1485)] = 84543, - [SMALL_STATE(1486)] = 84560, - [SMALL_STATE(1487)] = 84577, - [SMALL_STATE(1488)] = 84594, - [SMALL_STATE(1489)] = 84611, - [SMALL_STATE(1490)] = 84628, - [SMALL_STATE(1491)] = 84645, - [SMALL_STATE(1492)] = 84662, - [SMALL_STATE(1493)] = 84679, - [SMALL_STATE(1494)] = 84692, - [SMALL_STATE(1495)] = 84709, - [SMALL_STATE(1496)] = 84726, - [SMALL_STATE(1497)] = 84739, - [SMALL_STATE(1498)] = 84756, - [SMALL_STATE(1499)] = 84773, - [SMALL_STATE(1500)] = 84790, - [SMALL_STATE(1501)] = 84807, - [SMALL_STATE(1502)] = 84824, - [SMALL_STATE(1503)] = 84841, - [SMALL_STATE(1504)] = 84858, - [SMALL_STATE(1505)] = 84875, - [SMALL_STATE(1506)] = 84892, - [SMALL_STATE(1507)] = 84909, - [SMALL_STATE(1508)] = 84926, - [SMALL_STATE(1509)] = 84943, - [SMALL_STATE(1510)] = 84960, - [SMALL_STATE(1511)] = 84977, - [SMALL_STATE(1512)] = 84994, - [SMALL_STATE(1513)] = 85011, - [SMALL_STATE(1514)] = 85028, - [SMALL_STATE(1515)] = 85041, - [SMALL_STATE(1516)] = 85056, - [SMALL_STATE(1517)] = 85073, - [SMALL_STATE(1518)] = 85090, - [SMALL_STATE(1519)] = 85107, - [SMALL_STATE(1520)] = 85124, - [SMALL_STATE(1521)] = 85137, - [SMALL_STATE(1522)] = 85154, - [SMALL_STATE(1523)] = 85171, - [SMALL_STATE(1524)] = 85188, - [SMALL_STATE(1525)] = 85205, - [SMALL_STATE(1526)] = 85222, - [SMALL_STATE(1527)] = 85239, - [SMALL_STATE(1528)] = 85256, - [SMALL_STATE(1529)] = 85273, - [SMALL_STATE(1530)] = 85286, - [SMALL_STATE(1531)] = 85303, - [SMALL_STATE(1532)] = 85320, - [SMALL_STATE(1533)] = 85337, - [SMALL_STATE(1534)] = 85354, - [SMALL_STATE(1535)] = 85367, - [SMALL_STATE(1536)] = 85380, - [SMALL_STATE(1537)] = 85397, - [SMALL_STATE(1538)] = 85414, - [SMALL_STATE(1539)] = 85427, - [SMALL_STATE(1540)] = 85444, - [SMALL_STATE(1541)] = 85461, - [SMALL_STATE(1542)] = 85478, - [SMALL_STATE(1543)] = 85495, - [SMALL_STATE(1544)] = 85512, - [SMALL_STATE(1545)] = 85529, - [SMALL_STATE(1546)] = 85546, - [SMALL_STATE(1547)] = 85563, - [SMALL_STATE(1548)] = 85576, - [SMALL_STATE(1549)] = 85593, - [SMALL_STATE(1550)] = 85606, - [SMALL_STATE(1551)] = 85623, - [SMALL_STATE(1552)] = 85640, - [SMALL_STATE(1553)] = 85653, - [SMALL_STATE(1554)] = 85670, - [SMALL_STATE(1555)] = 85687, - [SMALL_STATE(1556)] = 85704, - [SMALL_STATE(1557)] = 85721, - [SMALL_STATE(1558)] = 85738, - [SMALL_STATE(1559)] = 85755, - [SMALL_STATE(1560)] = 85772, - [SMALL_STATE(1561)] = 85789, - [SMALL_STATE(1562)] = 85802, - [SMALL_STATE(1563)] = 85815, - [SMALL_STATE(1564)] = 85832, - [SMALL_STATE(1565)] = 85849, - [SMALL_STATE(1566)] = 85866, - [SMALL_STATE(1567)] = 85883, - [SMALL_STATE(1568)] = 85900, - [SMALL_STATE(1569)] = 85917, - [SMALL_STATE(1570)] = 85934, - [SMALL_STATE(1571)] = 85951, - [SMALL_STATE(1572)] = 85968, - [SMALL_STATE(1573)] = 85985, - [SMALL_STATE(1574)] = 86002, - [SMALL_STATE(1575)] = 86017, - [SMALL_STATE(1576)] = 86034, - [SMALL_STATE(1577)] = 86051, - [SMALL_STATE(1578)] = 86068, - [SMALL_STATE(1579)] = 86085, - [SMALL_STATE(1580)] = 86098, - [SMALL_STATE(1581)] = 86111, - [SMALL_STATE(1582)] = 86128, - [SMALL_STATE(1583)] = 86145, - [SMALL_STATE(1584)] = 86162, - [SMALL_STATE(1585)] = 86179, - [SMALL_STATE(1586)] = 86196, - [SMALL_STATE(1587)] = 86213, - [SMALL_STATE(1588)] = 86230, - [SMALL_STATE(1589)] = 86245, - [SMALL_STATE(1590)] = 86260, - [SMALL_STATE(1591)] = 86277, - [SMALL_STATE(1592)] = 86294, - [SMALL_STATE(1593)] = 86311, - [SMALL_STATE(1594)] = 86328, - [SMALL_STATE(1595)] = 86345, - [SMALL_STATE(1596)] = 86358, - [SMALL_STATE(1597)] = 86371, - [SMALL_STATE(1598)] = 86388, - [SMALL_STATE(1599)] = 86405, - [SMALL_STATE(1600)] = 86422, - [SMALL_STATE(1601)] = 86439, - [SMALL_STATE(1602)] = 86456, - [SMALL_STATE(1603)] = 86469, - [SMALL_STATE(1604)] = 86486, - [SMALL_STATE(1605)] = 86498, - [SMALL_STATE(1606)] = 86512, - [SMALL_STATE(1607)] = 86524, - [SMALL_STATE(1608)] = 86538, - [SMALL_STATE(1609)] = 86552, - [SMALL_STATE(1610)] = 86566, - [SMALL_STATE(1611)] = 86578, - [SMALL_STATE(1612)] = 86590, - [SMALL_STATE(1613)] = 86604, - [SMALL_STATE(1614)] = 86618, - [SMALL_STATE(1615)] = 86632, - [SMALL_STATE(1616)] = 86646, - [SMALL_STATE(1617)] = 86660, - [SMALL_STATE(1618)] = 86674, - [SMALL_STATE(1619)] = 86688, - [SMALL_STATE(1620)] = 86700, - [SMALL_STATE(1621)] = 86714, - [SMALL_STATE(1622)] = 86728, - [SMALL_STATE(1623)] = 86740, - [SMALL_STATE(1624)] = 86754, - [SMALL_STATE(1625)] = 86768, - [SMALL_STATE(1626)] = 86782, - [SMALL_STATE(1627)] = 86796, - [SMALL_STATE(1628)] = 86808, - [SMALL_STATE(1629)] = 86820, - [SMALL_STATE(1630)] = 86834, - [SMALL_STATE(1631)] = 86846, - [SMALL_STATE(1632)] = 86858, - [SMALL_STATE(1633)] = 86872, - [SMALL_STATE(1634)] = 86884, - [SMALL_STATE(1635)] = 86898, - [SMALL_STATE(1636)] = 86912, - [SMALL_STATE(1637)] = 86924, - [SMALL_STATE(1638)] = 86936, - [SMALL_STATE(1639)] = 86950, - [SMALL_STATE(1640)] = 86962, - [SMALL_STATE(1641)] = 86976, - [SMALL_STATE(1642)] = 86988, - [SMALL_STATE(1643)] = 87000, - [SMALL_STATE(1644)] = 87014, - [SMALL_STATE(1645)] = 87028, - [SMALL_STATE(1646)] = 87042, - [SMALL_STATE(1647)] = 87056, - [SMALL_STATE(1648)] = 87070, - [SMALL_STATE(1649)] = 87082, - [SMALL_STATE(1650)] = 87096, - [SMALL_STATE(1651)] = 87110, - [SMALL_STATE(1652)] = 87122, - [SMALL_STATE(1653)] = 87136, - [SMALL_STATE(1654)] = 87150, - [SMALL_STATE(1655)] = 87164, - [SMALL_STATE(1656)] = 87178, - [SMALL_STATE(1657)] = 87192, - [SMALL_STATE(1658)] = 87206, - [SMALL_STATE(1659)] = 87220, - [SMALL_STATE(1660)] = 87234, - [SMALL_STATE(1661)] = 87248, - [SMALL_STATE(1662)] = 87262, - [SMALL_STATE(1663)] = 87276, - [SMALL_STATE(1664)] = 87290, - [SMALL_STATE(1665)] = 87304, - [SMALL_STATE(1666)] = 87318, - [SMALL_STATE(1667)] = 87330, - [SMALL_STATE(1668)] = 87344, - [SMALL_STATE(1669)] = 87356, - [SMALL_STATE(1670)] = 87370, - [SMALL_STATE(1671)] = 87382, - [SMALL_STATE(1672)] = 87396, - [SMALL_STATE(1673)] = 87408, - [SMALL_STATE(1674)] = 87420, - [SMALL_STATE(1675)] = 87434, - [SMALL_STATE(1676)] = 87448, - [SMALL_STATE(1677)] = 87462, - [SMALL_STATE(1678)] = 87476, - [SMALL_STATE(1679)] = 87490, - [SMALL_STATE(1680)] = 87504, - [SMALL_STATE(1681)] = 87518, - [SMALL_STATE(1682)] = 87530, - [SMALL_STATE(1683)] = 87544, - [SMALL_STATE(1684)] = 87558, - [SMALL_STATE(1685)] = 87570, - [SMALL_STATE(1686)] = 87584, - [SMALL_STATE(1687)] = 87598, - [SMALL_STATE(1688)] = 87612, - [SMALL_STATE(1689)] = 87626, - [SMALL_STATE(1690)] = 87638, - [SMALL_STATE(1691)] = 87652, - [SMALL_STATE(1692)] = 87666, - [SMALL_STATE(1693)] = 87680, - [SMALL_STATE(1694)] = 87694, - [SMALL_STATE(1695)] = 87706, - [SMALL_STATE(1696)] = 87720, - [SMALL_STATE(1697)] = 87734, - [SMALL_STATE(1698)] = 87746, - [SMALL_STATE(1699)] = 87760, - [SMALL_STATE(1700)] = 87774, - [SMALL_STATE(1701)] = 87788, - [SMALL_STATE(1702)] = 87802, - [SMALL_STATE(1703)] = 87814, - [SMALL_STATE(1704)] = 87828, - [SMALL_STATE(1705)] = 87842, - [SMALL_STATE(1706)] = 87856, - [SMALL_STATE(1707)] = 87870, - [SMALL_STATE(1708)] = 87882, - [SMALL_STATE(1709)] = 87894, - [SMALL_STATE(1710)] = 87908, - [SMALL_STATE(1711)] = 87920, - [SMALL_STATE(1712)] = 87932, - [SMALL_STATE(1713)] = 87946, - [SMALL_STATE(1714)] = 87960, - [SMALL_STATE(1715)] = 87974, - [SMALL_STATE(1716)] = 87986, - [SMALL_STATE(1717)] = 88000, - [SMALL_STATE(1718)] = 88014, - [SMALL_STATE(1719)] = 88028, - [SMALL_STATE(1720)] = 88042, - [SMALL_STATE(1721)] = 88056, - [SMALL_STATE(1722)] = 88068, - [SMALL_STATE(1723)] = 88080, - [SMALL_STATE(1724)] = 88094, - [SMALL_STATE(1725)] = 88106, - [SMALL_STATE(1726)] = 88118, - [SMALL_STATE(1727)] = 88132, - [SMALL_STATE(1728)] = 88144, - [SMALL_STATE(1729)] = 88156, - [SMALL_STATE(1730)] = 88168, - [SMALL_STATE(1731)] = 88182, - [SMALL_STATE(1732)] = 88194, - [SMALL_STATE(1733)] = 88208, - [SMALL_STATE(1734)] = 88220, - [SMALL_STATE(1735)] = 88234, - [SMALL_STATE(1736)] = 88248, - [SMALL_STATE(1737)] = 88262, - [SMALL_STATE(1738)] = 88276, - [SMALL_STATE(1739)] = 88288, - [SMALL_STATE(1740)] = 88300, - [SMALL_STATE(1741)] = 88312, - [SMALL_STATE(1742)] = 88326, - [SMALL_STATE(1743)] = 88340, - [SMALL_STATE(1744)] = 88354, - [SMALL_STATE(1745)] = 88366, - [SMALL_STATE(1746)] = 88378, - [SMALL_STATE(1747)] = 88392, - [SMALL_STATE(1748)] = 88406, - [SMALL_STATE(1749)] = 88420, - [SMALL_STATE(1750)] = 88434, - [SMALL_STATE(1751)] = 88448, - [SMALL_STATE(1752)] = 88462, - [SMALL_STATE(1753)] = 88473, - [SMALL_STATE(1754)] = 88484, - [SMALL_STATE(1755)] = 88495, - [SMALL_STATE(1756)] = 88506, - [SMALL_STATE(1757)] = 88517, - [SMALL_STATE(1758)] = 88528, - [SMALL_STATE(1759)] = 88539, - [SMALL_STATE(1760)] = 88550, - [SMALL_STATE(1761)] = 88561, - [SMALL_STATE(1762)] = 88572, - [SMALL_STATE(1763)] = 88583, - [SMALL_STATE(1764)] = 88594, - [SMALL_STATE(1765)] = 88605, - [SMALL_STATE(1766)] = 88616, - [SMALL_STATE(1767)] = 88627, - [SMALL_STATE(1768)] = 88638, - [SMALL_STATE(1769)] = 88649, - [SMALL_STATE(1770)] = 88660, - [SMALL_STATE(1771)] = 88671, - [SMALL_STATE(1772)] = 88682, - [SMALL_STATE(1773)] = 88693, - [SMALL_STATE(1774)] = 88704, - [SMALL_STATE(1775)] = 88715, - [SMALL_STATE(1776)] = 88726, - [SMALL_STATE(1777)] = 88737, - [SMALL_STATE(1778)] = 88748, - [SMALL_STATE(1779)] = 88759, - [SMALL_STATE(1780)] = 88770, - [SMALL_STATE(1781)] = 88781, - [SMALL_STATE(1782)] = 88792, - [SMALL_STATE(1783)] = 88803, - [SMALL_STATE(1784)] = 88814, - [SMALL_STATE(1785)] = 88825, - [SMALL_STATE(1786)] = 88836, - [SMALL_STATE(1787)] = 88847, - [SMALL_STATE(1788)] = 88858, - [SMALL_STATE(1789)] = 88869, - [SMALL_STATE(1790)] = 88880, - [SMALL_STATE(1791)] = 88891, - [SMALL_STATE(1792)] = 88902, - [SMALL_STATE(1793)] = 88913, - [SMALL_STATE(1794)] = 88924, - [SMALL_STATE(1795)] = 88935, - [SMALL_STATE(1796)] = 88946, - [SMALL_STATE(1797)] = 88957, - [SMALL_STATE(1798)] = 88968, - [SMALL_STATE(1799)] = 88979, - [SMALL_STATE(1800)] = 88990, - [SMALL_STATE(1801)] = 89001, - [SMALL_STATE(1802)] = 89012, - [SMALL_STATE(1803)] = 89023, - [SMALL_STATE(1804)] = 89034, - [SMALL_STATE(1805)] = 89045, - [SMALL_STATE(1806)] = 89056, - [SMALL_STATE(1807)] = 89067, - [SMALL_STATE(1808)] = 89078, - [SMALL_STATE(1809)] = 89089, - [SMALL_STATE(1810)] = 89100, - [SMALL_STATE(1811)] = 89111, - [SMALL_STATE(1812)] = 89122, - [SMALL_STATE(1813)] = 89133, - [SMALL_STATE(1814)] = 89144, - [SMALL_STATE(1815)] = 89155, - [SMALL_STATE(1816)] = 89166, - [SMALL_STATE(1817)] = 89177, - [SMALL_STATE(1818)] = 89188, - [SMALL_STATE(1819)] = 89199, - [SMALL_STATE(1820)] = 89210, - [SMALL_STATE(1821)] = 89221, - [SMALL_STATE(1822)] = 89232, - [SMALL_STATE(1823)] = 89243, - [SMALL_STATE(1824)] = 89254, - [SMALL_STATE(1825)] = 89265, - [SMALL_STATE(1826)] = 89276, - [SMALL_STATE(1827)] = 89287, - [SMALL_STATE(1828)] = 89298, - [SMALL_STATE(1829)] = 89309, - [SMALL_STATE(1830)] = 89320, - [SMALL_STATE(1831)] = 89331, - [SMALL_STATE(1832)] = 89342, - [SMALL_STATE(1833)] = 89353, - [SMALL_STATE(1834)] = 89364, - [SMALL_STATE(1835)] = 89375, - [SMALL_STATE(1836)] = 89386, - [SMALL_STATE(1837)] = 89397, - [SMALL_STATE(1838)] = 89408, - [SMALL_STATE(1839)] = 89419, - [SMALL_STATE(1840)] = 89430, - [SMALL_STATE(1841)] = 89441, - [SMALL_STATE(1842)] = 89452, - [SMALL_STATE(1843)] = 89463, - [SMALL_STATE(1844)] = 89474, - [SMALL_STATE(1845)] = 89485, - [SMALL_STATE(1846)] = 89496, - [SMALL_STATE(1847)] = 89507, - [SMALL_STATE(1848)] = 89518, - [SMALL_STATE(1849)] = 89529, - [SMALL_STATE(1850)] = 89540, - [SMALL_STATE(1851)] = 89551, - [SMALL_STATE(1852)] = 89562, - [SMALL_STATE(1853)] = 89573, - [SMALL_STATE(1854)] = 89584, - [SMALL_STATE(1855)] = 89595, - [SMALL_STATE(1856)] = 89606, - [SMALL_STATE(1857)] = 89617, - [SMALL_STATE(1858)] = 89628, - [SMALL_STATE(1859)] = 89639, - [SMALL_STATE(1860)] = 89650, - [SMALL_STATE(1861)] = 89661, - [SMALL_STATE(1862)] = 89672, - [SMALL_STATE(1863)] = 89683, - [SMALL_STATE(1864)] = 89694, - [SMALL_STATE(1865)] = 89705, - [SMALL_STATE(1866)] = 89716, - [SMALL_STATE(1867)] = 89727, - [SMALL_STATE(1868)] = 89738, - [SMALL_STATE(1869)] = 89749, - [SMALL_STATE(1870)] = 89760, - [SMALL_STATE(1871)] = 89771, - [SMALL_STATE(1872)] = 89782, - [SMALL_STATE(1873)] = 89793, - [SMALL_STATE(1874)] = 89804, - [SMALL_STATE(1875)] = 89815, - [SMALL_STATE(1876)] = 89826, - [SMALL_STATE(1877)] = 89837, - [SMALL_STATE(1878)] = 89848, - [SMALL_STATE(1879)] = 89859, - [SMALL_STATE(1880)] = 89870, - [SMALL_STATE(1881)] = 89881, - [SMALL_STATE(1882)] = 89892, - [SMALL_STATE(1883)] = 89903, - [SMALL_STATE(1884)] = 89914, - [SMALL_STATE(1885)] = 89925, - [SMALL_STATE(1886)] = 89936, - [SMALL_STATE(1887)] = 89947, - [SMALL_STATE(1888)] = 89958, - [SMALL_STATE(1889)] = 89969, - [SMALL_STATE(1890)] = 89980, - [SMALL_STATE(1891)] = 89991, -}; - -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), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [65] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_echo, 1), - [67] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_echo, 1), - [69] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1471), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(44), - [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1616), - [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1618), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1315), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1629), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1883), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(285), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(394), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(544), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1361), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1634), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(56), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(63), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(422), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(308), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(841), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(425), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(831), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(530), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1347), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1868), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1318), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(134), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(77), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(77), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(79), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(80), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), - [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(44), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1883), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(285), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(394), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(544), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1706), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(56), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(63), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(422), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(308), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(841), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(425), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(831), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(530), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1318), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(134), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(77), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(77), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(79), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(80), - [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(44), - [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1883), - [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(285), - [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(394), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(544), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1706), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(56), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(63), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(422), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(308), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(841), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(425), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(831), - [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(530), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1318), - [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(134), - [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(77), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(77), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(79), - [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(80), - [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 1, .production_id = 1), - [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 1, .production_id = 1), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2), - [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2), - [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_access, 3, .production_id = 22), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_access, 3, .production_id = 22), - [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 1), - [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 1), - [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 23), - [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 23), - [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 24), - [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 24), - [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_name, 1), - [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_name, 1), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_unit, 1), - [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_unit, 1), - [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_function_expression, 1), - [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), - [468] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1660), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1), - [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 4, .production_id = 34), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 4, .production_id = 34), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 9), - [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 9), - [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, .production_id = 50), - [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, .production_id = 50), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(25), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1761), - [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(287), - [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(446), - [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(535), - [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1654), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(315), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(323), - [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(484), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(294), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(842), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(448), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(833), - [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(529), - [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1295), - [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(515), - [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(171), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(171), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(112), - [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(151), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, .production_id = 45), - [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, .production_id = 45), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), - [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3, .production_id = 14), - [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3, .production_id = 14), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 1), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 1), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update, 7, .production_id = 76), - [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 76), - [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), - [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), - [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), - [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), - [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 2, .production_id = 10), - [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 2, .production_id = 10), - [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_record_expression, 1), - [644] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1713), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), - [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 7, .production_id = 72), - [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 7, .production_id = 72), - [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_negation, 2), - [656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_negation, 2), - [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 3, .production_id = 16), - [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 3, .production_id = 16), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), - [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 2), - [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 2), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 4, .production_id = 16), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 4, .production_id = 16), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_negation, 2), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer_negation, 2), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo, 2), - [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo, 2), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 21), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 21), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 4), - [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 4), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 3, .production_id = 16), - [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 3, .production_id = 16), - [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 2, .production_id = 7), - [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, .production_id = 7), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 4, .production_id = 16), - [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 4, .production_id = 16), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, .production_id = 62), - [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, .production_id = 62), - [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 4, .production_id = 56), - [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 4, .production_id = 56), - [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 3, .production_id = 37), - [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, .production_id = 37), - [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 3), - [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 3), - [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 5), - [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 5), - [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), - [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_integer, 1), REDUCE(sym_integer, 2), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_integer, 1), REDUCE(sym_integer, 2), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, .production_id = 44), - [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, .production_id = 44), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 3, .production_id = 19), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 3, .production_id = 19), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 4, .production_id = 39), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 4, .production_id = 39), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 4, .production_id = 40), - [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 4, .production_id = 40), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_assert, 5, .production_id = 55), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_assert, 5, .production_id = 55), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 42), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [886] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1644), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 2, .production_id = 42), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [926] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1626), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 2), SHIFT(38), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 3), SHIFT(38), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 1, .production_id = 1), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 1, .production_id = 1), - [1578] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1723), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_field_access, 3, .production_id = 23), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_field_access, 3, .production_id = 23), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 5), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 5), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 5), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 5), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 4), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 4), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 2, .production_id = 10), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 2, .production_id = 10), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 3), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 3), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 74), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 74), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 5), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 5), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 4), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 4), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 2), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 2), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 4), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 4), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 6), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 6), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 4), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 4), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 3), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 3), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 3), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 3), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 3), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 3), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 3, .production_id = 65), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 3, .production_id = 65), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 5), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 5), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 2), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 2), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 2), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 2), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), - [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1757), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2), - [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 1), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, .production_id = 1), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, .production_id = 1), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 24), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 24), - [1718] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1676), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, .production_id = 1), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, .production_id = 1), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 2), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, .production_id = 2), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 15), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 15), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier, 1), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier, 1), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, .production_id = 3), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2, .production_id = 3), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 41), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 41), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_value, 1), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_value, 1), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 4), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 3), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 3), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 2), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 2), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 12), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 12), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 48), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 48), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_assert, 3, .production_id = 18), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_assert, 3, .production_id = 18), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_record_expression, 1), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 3), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 3), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 3), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 26), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 26), - [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 5), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 5), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_var, 1), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 2), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 69), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 69), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 2), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 2), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 2), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 5), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 4), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 4), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 33), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 33), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 3), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 3), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 71), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 71), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 8, .production_id = 78), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 8, .production_id = 78), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 5), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 5), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clauses, 1), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 75), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 75), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 3), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6), - [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 6, .production_id = 68), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 6, .production_id = 68), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 6), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 6), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4, .production_id = 29), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4, .production_id = 29), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 5, .production_id = 25), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 5, .production_id = 25), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, .production_id = 10), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, .production_id = 10), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4), - [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_hole, 1), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_hole, 1), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_body, 2), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_body, 2), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 9, .production_id = 79), - [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 9, .production_id = 79), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 27), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 27), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 2), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 43), - [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 43), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 2), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 4, .production_id = 25), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 4, .production_id = 25), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 6, .production_id = 60), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 6, .production_id = 60), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 2), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 4), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 4), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), - [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1793), - [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(825), - [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(835), - [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1406), - [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1293), - [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1296), - [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1268), - [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1268), - [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1077), - [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1244), - [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1243), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 3), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 11), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 11), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 57), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 57), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discard, 1), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_discard, 1), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 58), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 58), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let, 2, .production_id = 5), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let, 2, .production_id = 5), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 4), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 4), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 63), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 63), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 61), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 61), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 3), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7), - [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 2, .production_id = 42), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 8), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 8), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 3), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 3), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 51), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 51), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 2), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 2), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 3), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 2), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2311] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1741), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 1), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 2, .production_id = 42), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 59), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 3, .production_id = 59), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, .production_id = 4), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), - [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 21), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 6), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 6), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 64), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 64), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 21), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 3), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 3), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 22), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 22), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_guard, 2), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), - [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1720), - [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1717), - [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1297), - [2696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1747), - [2699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1665), - [2702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1674), - [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1338), - [2708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1853), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 1, .production_id = 1), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 35), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 66), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 52), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 5), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 4), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 2), - [2823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1871), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 5), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 53), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 35), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 35), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, .production_id = 53), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 6, .production_id = 66), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 3), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 3), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_binary_expression, 3, .production_id = 21), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 2), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, .production_id = 10), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 4), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 52), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1, .production_id = 6), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 53), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 6), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, .production_id = 36), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), - [2944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), SHIFT_REPEAT(1692), - [2947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), SHIFT_REPEAT(151), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructors, 1), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 35), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), - [3018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1356), - [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1323), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 1, .production_id = 1), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 1), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 1, .production_id = 1), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(388), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 51), - [3073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 51), SHIFT_REPEAT(886), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 1, .production_id = 8), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 2, .production_id = 2), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 51), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 51), SHIFT_REPEAT(897), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), SHIFT_REPEAT(839), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 1), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 1), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 3), - [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 1, .production_id = 13), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), - [3160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(834), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 1), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), - [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(827), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignment, 1, .production_id = 8), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 1), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 13), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 32), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), - [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(822), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), SHIFT_REPEAT(1035), - [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 2, .production_id = 28), - [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), - [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), SHIFT_REPEAT(857), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 2), - [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(1114), - [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), - [3252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), SHIFT_REPEAT(1290), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), SHIFT_REPEAT(951), - [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 3), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 1), - [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(1117), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 3, .production_id = 67), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(349), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 1, .production_id = 4), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(1229), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string_segment_option_size, 4), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 1), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 4), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 5), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 2), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 3, .production_id = 61), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 3), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1719), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 5), - [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), SHIFT_REPEAT(521), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 2), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 3, .production_id = 11), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 2, .production_id = 2), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), SHIFT_REPEAT(1089), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 1), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 6), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 4), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), SHIFT_REPEAT(906), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_arguments_repeat1, 2), SHIFT_REPEAT(916), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_arguments_repeat1, 2), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 4), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 1, .production_id = 17), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), SHIFT_REPEAT(1177), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(198), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 5), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 4), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 1, .production_id = 38), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), SHIFT_REPEAT(849), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), - [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), SHIFT_REPEAT(1450), - [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [3612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), SHIFT_REPEAT(1126), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_assignments_repeat1, 2), SHIFT_REPEAT(859), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_assignments_repeat1, 2), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_param, 1, .production_id = 1), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discard_param, 1, .production_id = 1), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 4, .production_id = 71), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 2), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string_segment_option_size, 4), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 3), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), SHIFT_REPEAT(1100), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 1, .production_id = 4), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_discard_param, 2, .production_id = 47), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_name_param, 2, .production_id = 47), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 1, .production_id = 1), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [3743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), SHIFT_REPEAT(1276), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 2, .production_id = 10), - [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string_segment_option_size, 4), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 2, .production_id = 10), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 2, .production_id = 31), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignment, 2, .production_id = 20), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 4), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 3), - [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 46), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 31), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hole, 1), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 1, .production_id = 49), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 3, .production_id = 73), - [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 3, .production_id = 30), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 3, .production_id = 59), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 3, .production_id = 54), - [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 2), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 1), - [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 1), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 5), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), - [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 1, .production_id = 4), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_argument, 1), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 3, .production_id = 30), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 3, .production_id = 59), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 1, .production_id = 4), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 3, .production_id = 59), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 4, .production_id = 77), - [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 3, .production_id = 70), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 5), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 2), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 5), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 4), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 2), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 2), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 3), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 2), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 3), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 3), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 4), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 5), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 1), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_type_annotation, 2, .production_id = 28), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4116] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 2), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 4), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), -}; - -#ifdef __cplusplus -extern "C" { -#endif -void *tree_sitter_gleam_external_scanner_create(void); -void tree_sitter_gleam_external_scanner_destroy(void *); -bool tree_sitter_gleam_external_scanner_scan(void *, TSLexer *, const bool *); -unsigned tree_sitter_gleam_external_scanner_serialize(void *, char *); -void tree_sitter_gleam_external_scanner_deserialize(void *, const char *, unsigned); - -#ifdef _WIN32 -#define extern __declspec(dllexport) -#endif - -extern const TSLanguage *tree_sitter_gleam(void) { - static const TSLanguage language = { - .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, - .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, - .symbol_metadata = ts_symbol_metadata, - .public_symbol_map = ts_symbol_map, - .alias_map = ts_non_terminal_alias_map, - .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, - .lex_fn = ts_lex, - .external_scanner = { - &ts_external_scanner_states[0][0], - ts_external_scanner_symbol_map, - tree_sitter_gleam_external_scanner_create, - tree_sitter_gleam_external_scanner_destroy, - tree_sitter_gleam_external_scanner_scan, - tree_sitter_gleam_external_scanner_serialize, - tree_sitter_gleam_external_scanner_deserialize, - }, - }; - return &language; -} -#ifdef __cplusplus -} -#endif diff --git a/vendored_parsers/tree-sitter-gleam/src/scanner.c b/vendored_parsers/tree-sitter-gleam/src/scanner.c deleted file mode 100644 index c5ff669e0..000000000 --- a/vendored_parsers/tree-sitter-gleam/src/scanner.c +++ /dev/null @@ -1,29 +0,0 @@ -#include - -enum TokenType { - QUOTED_CONTENT -}; - -void * tree_sitter_gleam_external_scanner_create() {return NULL;} -void tree_sitter_gleam_external_scanner_destroy(void * payload) {} -unsigned tree_sitter_gleam_external_scanner_serialize(void * payload, char * buffer) {return 0;} -void tree_sitter_gleam_external_scanner_deserialize(void * payload, const char * buffer, unsigned length) {} - -bool tree_sitter_gleam_external_scanner_scan(void * payload, TSLexer *lexer, const bool * valid_symbols) { - if (valid_symbols[QUOTED_CONTENT]) { - bool has_content = false; - - while (true) { - if (lexer->lookahead == '\"' || lexer->lookahead == '\\') { - break; - } else if (lexer->lookahead == 0) { - return false; - } - has_content = true; - lexer->advance(lexer, false); - } - lexer->result_symbol = QUOTED_CONTENT; - return has_content; - } - return false; -} diff --git a/vendored_parsers/tree-sitter-gleam/src/tree_sitter/parser.h b/vendored_parsers/tree-sitter-gleam/src/tree_sitter/parser.h deleted file mode 100644 index 2b14ac104..000000000 --- a/vendored_parsers/tree-sitter-gleam/src/tree_sitter/parser.h +++ /dev/null @@ -1,224 +0,0 @@ -#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 - -typedef uint16_t TSStateId; - -#ifndef TREE_SITTER_API_H_ -typedef uint16_t TSSymbol; -typedef uint16_t TSFieldId; -typedef struct TSLanguage TSLanguage; -#endif - -typedef struct { - TSFieldId field_id; - uint8_t child_index; - bool inherited; -} TSFieldMapEntry; - -typedef struct { - uint16_t index; - uint16_t length; -} TSFieldMapSlice; - -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 *); -}; - -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 union { - TSParseAction action; - struct { - uint8_t count; - bool reusable; - } entry; -} TSParseActionEntry; - -struct TSLanguage { - uint32_t 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 TSFieldMapSlice *field_map_slices; - const TSFieldMapEntry *field_map_entries; - const TSSymbolMetadata *symbol_metadata; - const TSSymbol *public_symbol_map; - const uint16_t *alias_map; - const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; - 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; -}; - -/* - * Lexer Macros - */ - -#define START_LEXER() \ - bool result = false; \ - bool skip = false; \ - 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 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_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ - }} - -#define RECOVER() \ - {{ \ - .type = TSParseActionTypeRecover \ - }} - -#define ACCEPT_INPUT() \ - {{ \ - .type = TSParseActionTypeAccept \ - }} - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_PARSER_H_ diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/attributes.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/attributes.txt deleted file mode 100644 index 211bef91f..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/attributes.txt +++ /dev/null @@ -1,101 +0,0 @@ -================================================================================ -Target attribute -================================================================================ - -@target(erlang) -pub fn main() { todo } - --------------------------------------------------------------------------------- - -(source_file - (attribute - name: (identifier) - arguments: (arguments - (attribute_value - (identifier)))) - (function - (visibility_modifier) - name: (identifier) - parameters: (function_parameters) - body: (block - (todo)))) - -================================================================================ -Attribute with multiple values -================================================================================ - -@deprecated(since: "1.2.0", replacement: wobble) -pub fn wibble() { todo } - --------------------------------------------------------------------------------- - -(source_file - (attribute - name: (identifier) - arguments: (arguments - (attribute_value - label: (label) - value: (string - (quoted_content))) - (attribute_value - label: (label) - value: (identifier)))) - (function - (visibility_modifier) - name: (identifier) - parameters: (function_parameters) - body: (block - (todo)))) - -================================================================================ -Attribute without arguments -================================================================================ - -@internal -pub fn wibble() { todo } - --------------------------------------------------------------------------------- - -(source_file - (attribute - name: (identifier)) - (function - (visibility_modifier) - name: (identifier) - parameters: (function_parameters) - body: (block - (todo)))) - -================================================================================ -Individually deprecated constructors -================================================================================ - -pub type SomeType { - NotDeprecated - @deprecated("Please use the NotDeprecated variant") - Deprecated(reason: String) -} - --------------------------------------------------------------------------------- - -(source_file - (type_definition - (visibility_modifier) - (type_name - name: (type_identifier)) - (data_constructors - (data_constructor - name: (constructor_name)) - (data_constructor - (attribute - name: (identifier) - arguments: (arguments - (attribute_value - (string - (quoted_content))))) - name: (constructor_name) - arguments: (data_constructor_arguments - (data_constructor_argument - label: (label) - value: (type - name: (type_identifier)))))))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/cases.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/cases.txt deleted file mode 100644 index d3424209a..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/cases.txt +++ /dev/null @@ -1,255 +0,0 @@ -================================================================================ -Case examples -================================================================================ - -case value { - "A" -> True - _ -> False -} - -case value {} - --------------------------------------------------------------------------------- - -(source_file - (case - (case_subjects - (identifier)) - (case_clauses - (case_clause - (case_clause_patterns - (case_clause_pattern - (string - (quoted_content)))) - (record - (constructor_name))) - (case_clause - (case_clause_patterns - (case_clause_pattern - (discard))) - (record - (constructor_name))))) - (case - (case_subjects - (identifier)))) - -================================================================================ -Case examples -================================================================================ - -// From https://gleam.run/news/v0.31-keeping-dependencies-explicit/#quality-of-life-improvements -pub fn listed(names: List(String), person: Person) -> String { - case names { - [name, ..names] if name == person.name -> True - [_, ..names] -> listed(names, person) - [] -> False - } -} - --------------------------------------------------------------------------------- - -(source_file - (comment) - (function - (visibility_modifier) - (identifier) - (function_parameters - (function_parameter - (identifier) - (type - (type_identifier) - (type_arguments - (type_argument - (type - (type_identifier)))))) - (function_parameter - (identifier) - (type - (type_identifier)))) - (type - (type_identifier)) - (block - (case - (case_subjects - (identifier)) - (case_clauses - (case_clause - (case_clause_patterns - (case_clause_pattern - (list_pattern - (identifier) - (list_pattern_tail - (identifier))))) - (case_clause_guard - (binary_expression - (identifier) - (field_access - (identifier) - (label)))) - (record - (constructor_name))) - (case_clause - (case_clause_patterns - (case_clause_pattern - (list_pattern - (discard) - (list_pattern_tail - (identifier))))) - (function_call - (identifier) - (arguments - (argument - (identifier)) - (argument - (identifier))))) - (case_clause - (case_clause_patterns - (case_clause_pattern - (list_pattern))) - (record - (constructor_name)))))))) - -================================================================================ -Pattern matching binaries with 'as' -================================================================================ - -// From https://gleam.run/news/v0.31-keeping-dependencies-explicit/#quality-of-life-improvements -case tag { - "category " as key <> value - | "region " as key <> value - | "priority " as key <> value -> { - let key = string.trim(key) - Ok(Tag(key, value)) - } - _ -> Error(Nil) -} - --------------------------------------------------------------------------------- - -(source_file - (comment) - (case - (case_subjects - (identifier)) - (case_clauses - (case_clause - (case_clause_patterns - (case_clause_pattern - (binary_expression - (binary_expression - (string - (quoted_content)) - (identifier)) - (identifier))) - (case_clause_pattern - (binary_expression - (binary_expression - (string - (quoted_content)) - (identifier)) - (identifier))) - (case_clause_pattern - (binary_expression - (binary_expression - (string - (quoted_content)) - (identifier)) - (identifier)))) - (block - (let - (identifier) - (function_call - (field_access - (identifier) - (label)) - (arguments - (argument - (identifier))))) - (record - (constructor_name) - (arguments - (argument - (record - (constructor_name) - (arguments - (argument - (identifier)) - (argument - (identifier))))))))) - (case_clause - (case_clause_patterns - (case_clause_pattern - (discard))) - (record - (constructor_name) - (arguments - (argument - (record - (constructor_name))))))))) - -================================================================================ -Case with boolean negation in a guard -================================================================================ - -case var { - 1 if !other_var -> True - _ -> False -} - --------------------------------------------------------------------------------- - -(source_file - (case - (case_subjects - (identifier)) - (case_clauses - (case_clause - (case_clause_patterns - (case_clause_pattern - (integer))) - (case_clause_guard - (boolean_negation - (identifier))) - (record - (constructor_name))) - (case_clause - (case_clause_patterns - (case_clause_pattern - (discard))) - (record - (constructor_name)))))) - -================================================================================ -Case with int remainder in guard -================================================================================ - -case var { - _ if 11 % 2 == 0 -> True - _ -> False -} - --------------------------------------------------------------------------------- - -(source_file - (case - (case_subjects - (identifier)) - (case_clauses - (case_clause - (case_clause_patterns - (case_clause_pattern - (discard))) - (case_clause_guard - (binary_expression - (binary_expression - (integer) - (integer)) - (integer))) - (record - (constructor_name))) - (case_clause - (case_clause_patterns - (case_clause_pattern - (discard))) - (record - (constructor_name)))))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/constants.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/constants.txt deleted file mode 100644 index 1fdde8572..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/constants.txt +++ /dev/null @@ -1,465 +0,0 @@ -================================================================================ -Constants -================================================================================ - -const a = "hello" -const a = "hello\nworld!" -const a = 1_234 -const a = 0b110 -const a = 0o7224 -const a = 0xBEef -const a: Int = 1234 -const a: Float = -1_234.53__23 -const a: Float = 0. -const a: #(Int, String) = #(1, "Hello!") -const a: #() = #() -const a: List(Int) = [1, 2] -const a: List(_) = [] -const a = <<3>> -const a = <<0:4, 1:3, 1:1>> -const a = <<3:size(8)>> -const a = <<52:size(4)-unit(4)>> -const a = <<"Hello Gleam πŸ’«":utf8>> -const a = Node -const a = Node() -const a = Cat("Ginny", 1950) -const a = Person(name: "Billy", age: 52) -const a = uri.Uri(host: "github.com") -const a: option.Option(String) = option.Some("Hello, World!") -const var_alias = b -const int_identity_alias: fn(Int) -> Int = int_identity -const fun_tuple: #(fn(Float) -> String, fn(Int) -> String) = #(float.to_string, int.to_string) - --------------------------------------------------------------------------------- - -(source_file - (constant - name: (identifier) - value: (string - (quoted_content))) - (constant - name: (identifier) - value: (string - (quoted_content) - (escape_sequence) - (quoted_content))) - (constant - name: (identifier) - value: (integer)) - (constant - name: (identifier) - value: (integer)) - (constant - name: (identifier) - value: (integer)) - (constant - name: (identifier) - value: (integer)) - (constant - name: (identifier) - type: (type - name: (type_identifier)) - value: (integer)) - (constant - name: (identifier) - type: (type - name: (type_identifier)) - value: (float)) - (constant - name: (identifier) - type: (type - name: (type_identifier)) - value: (float)) - (constant - name: (identifier) - type: (tuple_type - (type - name: (type_identifier)) - (type - name: (type_identifier))) - value: (tuple - (integer) - (string - (quoted_content)))) - (constant - name: (identifier) - type: (tuple_type) - value: (tuple)) - (constant - name: (identifier) - type: (type - name: (type_identifier) - arguments: (type_arguments - (type_argument - (type - name: (type_identifier))))) - value: (list - (integer) - (integer))) - (constant - name: (identifier) - type: (type - name: (type_identifier) - arguments: (type_arguments - (type_argument - (type_hole)))) - value: (list)) - (constant - name: (identifier) - value: (bit_string - (bit_string_segment - value: (integer)))) - (constant - name: (identifier) - value: (bit_string - (bit_string_segment - value: (integer) - options: (bit_string_segment_options - (integer))) - (bit_string_segment - value: (integer) - options: (bit_string_segment_options - (integer))) - (bit_string_segment - value: (integer) - options: (bit_string_segment_options - (integer))))) - (constant - name: (identifier) - value: (bit_string - (bit_string_segment - value: (integer) - options: (bit_string_segment_options - (bit_string_segment_option - (integer)))))) - (constant - name: (identifier) - value: (bit_string - (bit_string_segment - value: (integer) - options: (bit_string_segment_options - (bit_string_segment_option - (integer)) - (bit_string_segment_option - (integer)))))) - (constant - name: (identifier) - value: (bit_string - (bit_string_segment - value: (string - (quoted_content)) - options: (bit_string_segment_options - (bit_string_segment_option))))) - (constant - name: (identifier) - value: (record - name: (constructor_name))) - (constant - name: (identifier) - value: (record - name: (constructor_name) - arguments: (arguments))) - (constant - name: (identifier) - value: (record - name: (constructor_name) - arguments: (arguments - (argument - value: (string - (quoted_content))) - (argument - value: (integer))))) - (constant - name: (identifier) - value: (record - name: (constructor_name) - arguments: (arguments - (argument - label: (label) - value: (string - (quoted_content))) - (argument - label: (label) - value: (integer))))) - (constant - name: (identifier) - value: (record - name: (remote_constructor_name - module: (identifier) - name: (constructor_name)) - arguments: (arguments - (argument - label: (label) - value: (string - (quoted_content)))))) - (constant - name: (identifier) - type: (type - name: (remote_type_identifier - module: (identifier) - name: (type_identifier)) - arguments: (type_arguments - (type_argument - (type - name: (type_identifier))))) - value: (record - name: (remote_constructor_name - module: (identifier) - name: (constructor_name)) - arguments: (arguments - (argument - value: (string - (quoted_content)))))) - (constant - name: (identifier) - value: (identifier)) - (constant - name: (identifier) - type: (function_type - parameter_types: (function_parameter_types - (type - name: (type_identifier))) - return_type: (type - name: (type_identifier))) - value: (identifier)) - (constant - name: (identifier) - type: (tuple_type - (function_type - parameter_types: (function_parameter_types - (type - name: (type_identifier))) - return_type: (type - name: (type_identifier))) - (function_type - parameter_types: (function_parameter_types - (type - name: (type_identifier))) - return_type: (type - name: (type_identifier)))) - value: (tuple - (field_access - record: (identifier) - field: (label)) - (field_access - record: (identifier) - field: (label))))) - -================================================================================ -Public constants -================================================================================ - -pub const a = "hello" -pub const a: Int = 1234 -pub const a: Float = -1_234.53__23 -pub const a: #(Int, String) = #(1, "Hello!") -pub const a: #() = #() -pub const a: List(Int) = [1, 2] -pub const a: List(_) = [] -pub const a = <<3>> -pub const a = <<0:4, 1:3, 1:1>> -pub const a = <<3:size(8)>> -pub const a = <<52:size(4)-unit(4)>> -pub const a = <<"Hello Gleam πŸ’«":utf8>> -pub const a = Node -pub const a = Node() -pub const a = Cat("Ginny", 1950) -pub const a = Person(name: "Billy", age: 52) -pub const a = uri.Uri(host: "github.com") - --------------------------------------------------------------------------------- - -(source_file - (constant - (visibility_modifier) - name: (identifier) - value: (string - (quoted_content))) - (constant - (visibility_modifier) - name: (identifier) - type: (type - name: (type_identifier)) - value: (integer)) - (constant - (visibility_modifier) - name: (identifier) - type: (type - name: (type_identifier)) - value: (float)) - (constant - (visibility_modifier) - name: (identifier) - type: (tuple_type - (type - name: (type_identifier)) - (type - name: (type_identifier))) - value: (tuple - (integer) - (string - (quoted_content)))) - (constant - (visibility_modifier) - name: (identifier) - type: (tuple_type) - value: (tuple)) - (constant - (visibility_modifier) - name: (identifier) - type: (type - name: (type_identifier) - arguments: (type_arguments - (type_argument - (type - name: (type_identifier))))) - value: (list - (integer) - (integer))) - (constant - (visibility_modifier) - name: (identifier) - type: (type - name: (type_identifier) - arguments: (type_arguments - (type_argument - (type_hole)))) - value: (list)) - (constant - (visibility_modifier) - name: (identifier) - value: (bit_string - (bit_string_segment - value: (integer)))) - (constant - (visibility_modifier) - name: (identifier) - value: (bit_string - (bit_string_segment - value: (integer) - options: (bit_string_segment_options - (integer))) - (bit_string_segment - value: (integer) - options: (bit_string_segment_options - (integer))) - (bit_string_segment - value: (integer) - options: (bit_string_segment_options - (integer))))) - (constant - (visibility_modifier) - name: (identifier) - value: (bit_string - (bit_string_segment - value: (integer) - options: (bit_string_segment_options - (bit_string_segment_option - (integer)))))) - (constant - (visibility_modifier) - name: (identifier) - value: (bit_string - (bit_string_segment - value: (integer) - options: (bit_string_segment_options - (bit_string_segment_option - (integer)) - (bit_string_segment_option - (integer)))))) - (constant - (visibility_modifier) - name: (identifier) - value: (bit_string - (bit_string_segment - value: (string - (quoted_content)) - options: (bit_string_segment_options - (bit_string_segment_option))))) - (constant - (visibility_modifier) - name: (identifier) - value: (record - name: (constructor_name))) - (constant - (visibility_modifier) - name: (identifier) - value: (record - name: (constructor_name) - arguments: (arguments))) - (constant - (visibility_modifier) - name: (identifier) - value: (record - name: (constructor_name) - arguments: (arguments - (argument - value: (string - (quoted_content))) - (argument - value: (integer))))) - (constant - (visibility_modifier) - name: (identifier) - value: (record - name: (constructor_name) - arguments: (arguments - (argument - label: (label) - value: (string - (quoted_content))) - (argument - label: (label) - value: (integer))))) - (constant - (visibility_modifier) - name: (identifier) - value: (record - name: (remote_constructor_name - module: (identifier) - name: (constructor_name)) - arguments: (arguments - (argument - label: (label) - value: (string - (quoted_content))))))) - -================================================================================ -Scientific notation -================================================================================ - -const a = 0.0e0 -const a = 1.0e123_456 -const a = -100.001e-1_230 - --------------------------------------------------------------------------------- - -(source_file - (constant - (identifier) - (float)) - (constant - (identifier) - (float)) - (constant - (identifier) - (float))) - -================================================================================ -Constant with shorthand labels -================================================================================ - -const b = Wibble(arg:, arg:) - --------------------------------------------------------------------------------- - -(source_file - (constant - (identifier) - (record - (constructor_name) - (arguments - (argument - (label)) - (argument - (label)))))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/custom_types.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/custom_types.txt deleted file mode 100644 index 4d0cc9ea0..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/custom_types.txt +++ /dev/null @@ -1,272 +0,0 @@ -================================================================================ -Parser example custom types -================================================================================ - -type A { A } -type A { A(String) } -type Box(inner_type) { Box(inner: inner_type) } -type NamedBox(inner_type) { Box(String, inner: inner_type) } - --------------------------------------------------------------------------------- - -(source_file - (type_definition - (type_name - name: (type_identifier)) - (data_constructors - (data_constructor - name: (constructor_name)))) - (type_definition - (type_name - name: (type_identifier)) - (data_constructors - (data_constructor - name: (constructor_name) - arguments: (data_constructor_arguments - (data_constructor_argument - value: (type - name: (type_identifier))))))) - (type_definition - (type_name - name: (type_identifier) - parameters: (type_parameters - (type_parameter))) - (data_constructors - (data_constructor - name: (constructor_name) - arguments: (data_constructor_arguments - (data_constructor_argument - label: (label) - value: (type_var)))))) - (type_definition - (type_name - name: (type_identifier) - parameters: (type_parameters - (type_parameter))) - (data_constructors - (data_constructor - name: (constructor_name) - arguments: (data_constructor_arguments - (data_constructor_argument - value: (type - name: (type_identifier))) - (data_constructor_argument - label: (label) - value: (type_var))))))) - -================================================================================ -Other custom type examples -================================================================================ - -type Cat { - Cat(name: String, cuteness: Int) -} - -type Animal() { - Cat(name: String, cuteness: Int) - Dog(name: String, cuteness: Int) -} - -type Result(success_type, failure_type) { - Ok(success_type) - Error(failure_type) -} - -type Ord { - LT - EQ - GT -} - -type Boring { - Boring -} - --------------------------------------------------------------------------------- - -(source_file - (type_definition - (type_name - name: (type_identifier)) - (data_constructors - (data_constructor - name: (constructor_name) - arguments: (data_constructor_arguments - (data_constructor_argument - label: (label) - value: (type - name: (type_identifier))) - (data_constructor_argument - label: (label) - value: (type - name: (type_identifier))))))) - (type_definition - (type_name - name: (type_identifier) - parameters: (type_parameters)) - (data_constructors - (data_constructor - name: (constructor_name) - arguments: (data_constructor_arguments - (data_constructor_argument - label: (label) - value: (type - name: (type_identifier))) - (data_constructor_argument - label: (label) - value: (type - name: (type_identifier))))) - (data_constructor - name: (constructor_name) - arguments: (data_constructor_arguments - (data_constructor_argument - label: (label) - value: (type - name: (type_identifier))) - (data_constructor_argument - label: (label) - value: (type - name: (type_identifier))))))) - (type_definition - (type_name - name: (type_identifier) - parameters: (type_parameters - (type_parameter) - (type_parameter))) - (data_constructors - (data_constructor - name: (constructor_name) - arguments: (data_constructor_arguments - (data_constructor_argument - value: (type_var)))) - (data_constructor - name: (constructor_name) - arguments: (data_constructor_arguments - (data_constructor_argument - value: (type_var)))))) - (type_definition - (type_name - name: (type_identifier)) - (data_constructors - (data_constructor - name: (constructor_name)) - (data_constructor - name: (constructor_name)) - (data_constructor - name: (constructor_name)))) - (type_definition - (type_name - name: (type_identifier)) - (data_constructors - (data_constructor - name: (constructor_name))))) - -================================================================================ -Public custom type definitions -================================================================================ - -pub type Animal(name, cuteness) { - Cat(name: String, cuteness: Int) - Dog(name: String, cuteness: Int) -} - --------------------------------------------------------------------------------- - -(source_file - (type_definition - (visibility_modifier) - (type_name - name: (type_identifier) - parameters: (type_parameters - (type_parameter) - (type_parameter))) - (data_constructors - (data_constructor - name: (constructor_name) - arguments: (data_constructor_arguments - (data_constructor_argument - label: (label) - value: (type - name: (type_identifier))) - (data_constructor_argument - label: (label) - value: (type - name: (type_identifier))))) - (data_constructor - name: (constructor_name) - arguments: (data_constructor_arguments - (data_constructor_argument - label: (label) - value: (type - name: (type_identifier))) - (data_constructor_argument - label: (label) - value: (type - name: (type_identifier)))))))) - -================================================================================ -Public opaque custom type definitions -================================================================================ - -pub opaque type Animal(name, cuteness) { - Cat(name: String, cuteness: Int) - Dog(name: String, cuteness: Int) -} - --------------------------------------------------------------------------------- - -(source_file - (type_definition - (visibility_modifier) - (opacity_modifier) - (type_name - name: (type_identifier) - parameters: (type_parameters - (type_parameter) - (type_parameter))) - (data_constructors - (data_constructor - name: (constructor_name) - arguments: (data_constructor_arguments - (data_constructor_argument - label: (label) - value: (type - name: (type_identifier))) - (data_constructor_argument - label: (label) - value: (type - name: (type_identifier))))) - (data_constructor - name: (constructor_name) - arguments: (data_constructor_arguments - (data_constructor_argument - label: (label) - value: (type - name: (type_identifier))) - (data_constructor_argument - label: (label) - value: (type - name: (type_identifier)))))))) - -================================================================================ -Record update with shorthand labels -================================================================================ - -Wibble(..wibble, arg:, arg:, arg: todo as "no shorthand") - --------------------------------------------------------------------------------- - -(source_file - (record_update - (constructor_name) - (identifier) - (record_update_arguments - (record_update_argument - (label)) - (record_update_argument - (label)) - (record_update_argument - (label) - (todo - (string - (quoted_content))))))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/destructuring.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/destructuring.txt deleted file mode 100644 index 6d6920edb..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/destructuring.txt +++ /dev/null @@ -1,78 +0,0 @@ -================================================================================ -Case with spread -================================================================================ - -pub fn main() { - case xs { - [[]] -> io.println("one") - [[], ..] -> io.println("many") - } -} - --------------------------------------------------------------------------------- - -(source_file - (function - (visibility_modifier) - (identifier) - (function_parameters) - (block - (case - (case_subjects - (identifier)) - (case_clauses - (case_clause - (case_clause_patterns - (case_clause_pattern - (list_pattern - (list_pattern)))) - (function_call - (field_access - (identifier) - (label)) - (arguments - (argument - (string - (quoted_content)))))) - (case_clause - (case_clause_patterns - (case_clause_pattern - (list_pattern - (list_pattern) - (list_pattern_tail)))) - (function_call - (field_access - (identifier) - (label)) - (arguments - (argument - (string - (quoted_content))))))))))) - -================================================================================ -Pattern with label shorthand -================================================================================ - -pub fn main() { - let Wibble(arg1:, arg2:) = todo as "a" -} - --------------------------------------------------------------------------------- - -(source_file - (function - (visibility_modifier) - (identifier) - (function_parameters) - (block - (let - (record_pattern - (constructor_name) - (record_pattern_arguments - (record_pattern_argument - (label)) - (record_pattern_argument - (label)))) - (todo - (string - (quoted_content))))))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/echo.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/echo.txt deleted file mode 100644 index f3e9f9918..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/echo.txt +++ /dev/null @@ -1,112 +0,0 @@ -================================================================================ -Echo with expression -================================================================================ - -pub fn main() { - echo 1 -} - --------------------------------------------------------------------------------- - -(source_file - (function - (visibility_modifier) - (identifier) - (function_parameters) - (block - (echo - (integer))))) - -================================================================================ -Echo in pipeline -================================================================================ - -pub fn main() { - [] - |> echo - |> panic -} - --------------------------------------------------------------------------------- - -(source_file - (function - (visibility_modifier) - (identifier) - (function_parameters) - (block - (binary_expression - (binary_expression - (list) - (pipeline_echo)) - (panic))))) - -================================================================================ -Echo last in pipeline -================================================================================ - -pub fn main() { - [] - |> echo - - 1 -} - --------------------------------------------------------------------------------- - -(source_file - (function - (visibility_modifier) - (identifier) - (function_parameters) - (block - (binary_expression - (list) - (pipeline_echo)) - (integer)))) - -================================================================================ -Echo precedence with pipes -================================================================================ - -pub fn main() { - echo 1 |> 2 - 3 -} - --------------------------------------------------------------------------------- - -(source_file - (function - (visibility_modifier) - (identifier) - (function_parameters) - (block - (echo - (binary_expression - (integer) - (integer))) - (integer)))) - -================================================================================ -Echo precedence with binop -================================================================================ - -pub fn main() { - echo 1 + 2 - 3 -} - --------------------------------------------------------------------------------- - -(source_file - (function - (visibility_modifier) - (identifier) - (function_parameters) - (block - (echo - (binary_expression - (integer) - (integer))) - (integer)))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/expressions.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/expressions.txt deleted file mode 100644 index c8c32c169..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/expressions.txt +++ /dev/null @@ -1,179 +0,0 @@ -================================================================================ -Bit-string expression -================================================================================ - -<> - --------------------------------------------------------------------------------- - -(source_file - (bit_string - (bit_string_segment - (identifier) - (bit_string_segment_options - (bit_string_segment_option) - (bit_string_segment_option - (integer)) - (bit_string_segment_option - (integer)))) - (bit_string_segment - (identifier) - (bit_string_segment_options - (bit_string_segment_option))))) - -================================================================================ -Boolean Negation -================================================================================ - -!False -True && !False - --------------------------------------------------------------------------------- - -(source_file - (boolean_negation - (record - (constructor_name))) - (binary_expression - (record - (constructor_name)) - (boolean_negation - (record - (constructor_name))))) - -================================================================================ -Integer Negation -================================================================================ - -{-x} -{-{5*30}} -{-my_fun()} - --------------------------------------------------------------------------------- - -(source_file - (block - (integer_negation - (identifier))) - (block - (integer_negation - (block - (binary_expression - (integer) - (integer))))) - (block - (integer_negation - (function_call - (identifier) - (arguments))))) - -================================================================================ -Concatenation -================================================================================ - -let concat = "a" <> "b" - -case "12345" { - "0" <> rest -> rest - "12" <> "34" <> "5" -> "match" - _ -> "" -} - --------------------------------------------------------------------------------- - -(source_file - (let - (identifier) - (binary_expression - (string - (quoted_content)) - (string - (quoted_content)))) - (case - (case_subjects - (string - (quoted_content))) - (case_clauses - (case_clause - (case_clause_patterns - (case_clause_pattern - (binary_expression - (string - (quoted_content)) - (identifier)))) - (identifier)) - (case_clause - (case_clause_patterns - (case_clause_pattern - (binary_expression - (binary_expression - (string - (quoted_content)) - (string - (quoted_content))) - (string - (quoted_content))))) - (string - (quoted_content))) - (case_clause - (case_clause_patterns - (case_clause_pattern - (discard))) - (string))))) - -================================================================================ -Todo and panic 'as' with string expressions -================================================================================ - -todo as { "Hello, " <> "world!" } -panic as { "Hello, " <> "world!" } - --------------------------------------------------------------------------------- - -(source_file - (todo - (block - (binary_expression - (string - (quoted_content)) - (string - (quoted_content))))) - (panic - (block - (binary_expression - (string - (quoted_content)) - (string - (quoted_content)))))) - -================================================================================ -Todo and panic in function application style -================================================================================ - -todo("don't panic") -panic("aaaah!") - --------------------------------------------------------------------------------- - -(source_file - (todo - (string - (quoted_content))) - (panic - (string - (quoted_content)))) - -================================================================================ -Nested field access -================================================================================ - -config.connection.host - --------------------------------------------------------------------------------- - -(source_file - (field_access - (field_access - (identifier) - (label)) - (label))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/external_functions.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/external_functions.txt deleted file mode 100644 index 194750adf..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/external_functions.txt +++ /dev/null @@ -1,175 +0,0 @@ -================================================================================ -External functions -================================================================================ - -external fn read_file(String) -> Result(String, Reason) = - "file" "open" -external fn a(name: String) -> String = "x" "y" -external fn a() -> #(List(Int), fn(Int) -> String) = "x" "y" - --------------------------------------------------------------------------------- - -(source_file - (external_function - name: (identifier) - parameters: (function_parameters - (function_parameter - type: (type - name: (type_identifier)))) - return_type: (type - name: (type_identifier) - arguments: (type_arguments - (type_argument - (type - name: (type_identifier))) - (type_argument - (type - name: (type_identifier))))) - body: (external_function_body - (string - (quoted_content)) - (string - (quoted_content)))) - (external_function - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier) - type: (type - name: (type_identifier)))) - return_type: (type - name: (type_identifier)) - body: (external_function_body - (string - (quoted_content)) - (string - (quoted_content)))) - (external_function - name: (identifier) - parameters: (function_parameters) - return_type: (tuple_type - (type - name: (type_identifier) - arguments: (type_arguments - (type_argument - (type - name: (type_identifier))))) - (function_type - parameter_types: (function_parameter_types - (type - name: (type_identifier))) - return_type: (type - name: (type_identifier)))) - body: (external_function_body - (string - (quoted_content)) - (string - (quoted_content))))) - -================================================================================ -Public external functions -================================================================================ - -pub external fn read_file(String) -> Result(String, Reason) = - "file" "open" -pub external fn a(name: String) -> String = "x" "y" -pub external fn a() -> #(List(Int), fn(Int) -> String) = "x" "y" - --------------------------------------------------------------------------------- - -(source_file - (external_function - (visibility_modifier) - name: (identifier) - parameters: (function_parameters - (function_parameter - type: (type - name: (type_identifier)))) - return_type: (type - name: (type_identifier) - arguments: (type_arguments - (type_argument - (type - name: (type_identifier))) - (type_argument - (type - name: (type_identifier))))) - body: (external_function_body - (string - (quoted_content)) - (string - (quoted_content)))) - (external_function - (visibility_modifier) - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier) - type: (type - name: (type_identifier)))) - return_type: (type - name: (type_identifier)) - body: (external_function_body - (string - (quoted_content)) - (string - (quoted_content)))) - (external_function - (visibility_modifier) - name: (identifier) - parameters: (function_parameters) - return_type: (tuple_type - (type - name: (type_identifier) - arguments: (type_arguments - (type_argument - (type - name: (type_identifier))))) - (function_type - parameter_types: (function_parameter_types - (type - name: (type_identifier))) - return_type: (type - name: (type_identifier)))) - body: (external_function_body - (string - (quoted_content)) - (string - (quoted_content))))) - -================================================================================ -External function with attribute syntax -================================================================================ - -@external(erlang, "erlang", "integer_to_list") -fn integer_to_list(int int: Int, base base: Int) -> String - ---- - -(source_file - (attribute - (identifier) - (arguments - (attribute_value - (identifier)) - (attribute_value - (string - (quoted_content))) - (attribute_value - (string - (quoted_content))))) - (function - (identifier) - (function_parameters - (function_parameter - (label) - (identifier) - (type - (type_identifier))) - (function_parameter - (label) - (identifier) - (type - (type_identifier)))) - (type - (type_identifier)))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/external_types.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/external_types.txt deleted file mode 100644 index ffb3958f1..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/external_types.txt +++ /dev/null @@ -1,52 +0,0 @@ -================================================================================ -External types -================================================================================ - -type IODevice -type IODevice() -type Map(key, value) - --------------------------------------------------------------------------------- - -(source_file - (external_type - (type_name - name: (type_identifier))) - (external_type - (type_name - name: (type_identifier) - parameters: (type_parameters))) - (external_type - (type_name - name: (type_identifier) - parameters: (type_parameters - (type_parameter) - (type_parameter))))) - -================================================================================ -Public external types -================================================================================ - -pub type IODevice -pub type IODevice() -pub type Map(key, value) - --------------------------------------------------------------------------------- - -(source_file - (external_type - (visibility_modifier) - (type_name - name: (type_identifier))) - (external_type - (visibility_modifier) - (type_name - name: (type_identifier) - parameters: (type_parameters))) - (external_type - (visibility_modifier) - (type_name - name: (type_identifier) - parameters: (type_parameters - (type_parameter) - (type_parameter))))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/functions.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/functions.txt deleted file mode 100644 index 9c9bced21..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/functions.txt +++ /dev/null @@ -1,1123 +0,0 @@ -================================================================================ -Function examples -================================================================================ - -fn add(x: Int, y: Int) -> Int { - x + y -} -fn twice(f: fn(t) -> t, x: t) -> t { - f(f(x)) -} -fn inferred_identity(x) { - x -} -fn replace( - in string: String, - each pattern: String, - with replacement: String -) { - string.replace(in: string, each: pattern, with: replacement) -} - --------------------------------------------------------------------------------- - -(source_file - (function - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier) - type: (type - name: (type_identifier))) - (function_parameter - name: (identifier) - type: (type - name: (type_identifier)))) - return_type: (type - name: (type_identifier)) - body: (block - (binary_expression - left: (identifier) - right: (identifier)))) - (function - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier) - type: (function_type - parameter_types: (function_parameter_types - (type_var)) - return_type: (type_var))) - (function_parameter - name: (identifier) - type: (type_var))) - return_type: (type_var) - body: (block - (function_call - function: (identifier) - arguments: (arguments - (argument - value: (function_call - function: (identifier) - arguments: (arguments - (argument - value: (identifier))))))))) - (function - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier))) - body: (block - (identifier))) - (function - name: (identifier) - parameters: (function_parameters - (function_parameter - label: (label) - name: (identifier) - type: (type - name: (type_identifier))) - (function_parameter - label: (label) - name: (identifier) - type: (type - name: (type_identifier))) - (function_parameter - label: (label) - name: (identifier) - type: (type - name: (type_identifier)))) - body: (block - (function_call - function: (field_access - record: (identifier) - field: (label)) - arguments: (arguments - (argument - label: (label) - value: (identifier)) - (argument - label: (label) - value: (identifier)) - (argument - label: (label) - value: (identifier))))))) - -================================================================================ -Public function examples -================================================================================ - -pub fn add(x: Int, y: Int) -> Int { - x + y -} -pub fn twice(f: fn(t) -> t, x: t) -> t { - f(f(x)) -} -pub fn inferred_identity(x) { - x -} -pub fn replace( - in string: String, - each pattern: String, - with replacement: String -) { - string.replace(in: in, each: each, with: with) -} - --------------------------------------------------------------------------------- - -(source_file - (function - (visibility_modifier) - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier) - type: (type - name: (type_identifier))) - (function_parameter - name: (identifier) - type: (type - name: (type_identifier)))) - return_type: (type - name: (type_identifier)) - body: (block - (binary_expression - left: (identifier) - right: (identifier)))) - (function - (visibility_modifier) - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier) - type: (function_type - parameter_types: (function_parameter_types - (type_var)) - return_type: (type_var))) - (function_parameter - name: (identifier) - type: (type_var))) - return_type: (type_var) - body: (block - (function_call - function: (identifier) - arguments: (arguments - (argument - value: (function_call - function: (identifier) - arguments: (arguments - (argument - value: (identifier))))))))) - (function - (visibility_modifier) - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier))) - body: (block - (identifier))) - (function - (visibility_modifier) - name: (identifier) - parameters: (function_parameters - (function_parameter - label: (label) - name: (identifier) - type: (type - name: (type_identifier))) - (function_parameter - label: (label) - name: (identifier) - type: (type - name: (type_identifier))) - (function_parameter - label: (label) - name: (identifier) - type: (type - name: (type_identifier)))) - body: (block - (function_call - function: (field_access - record: (identifier) - field: (label)) - arguments: (arguments - (argument - label: (label) - value: (identifier)) - (argument - label: (label) - value: (identifier)) - (argument - label: (label) - value: (identifier))))))) - -================================================================================ -Basic functions -================================================================================ - -fn unfinished() {} -fn str() { - "Hello, World!" -} -fn integer() { - 42 -} -fn float() { - 12.34 -} -fn record() { - Cat(name: "Nubi") -} -fn remote_record() { - cats.Cat(name: "Nubi") -} -fn var(x) { - x -} -fn funcall() { - myfun() -} -fn unfinished() { - todo as "Finish me!" -} -fn do_panic() { - panic - panic as "aaaah!" -} -fn tuple(x) { - #(x, 1) -} -fn list(x) { - [1, 2, ..x] -} -fn bit_string() { - <<0:4, 1:3, 1:1>> -} -fn return_fun(x) { - fn(y: Int) { x + y } -} -fn block() { - { - 1 + 1 - "Hello, World!" - } -} -fn foob(x, y) { - case x, y { - 1, 2 | 3, 4 -> True - _else -> False - } -} -fn assert_assignment() { - let assert Ok(a) = Ok(1) - let assert x = { - 1 + 1 - "Hello, World!" - } - let assert y = x - let assert #(x, _) = #(1, 2) - let assert Ok(_) = Ok(10) as "This never fails" - let assert 10 = 11 as { "message1" <> "message2" } -} -fn assignment() { - let x = { - 1 + 1 - "Hello, World!" - } - let y = x - let #(x, _) = #(1, 2) -} -fn assertions() { - assert True && False - assert add(1, 2) == 3 - assert !some_value - assert { - 10 - 11 - } != 10 - assert result.is_ok(Ok(10)) -} -fn update(x) { - Cat(..x, name: "Nubi", cuteness: 1000 + 1001) - animals.Dog(..myfun(), name: "Rey", cuteness: 1950) -} -fn tuple_access(x) { - x.1 -} -fn field_access(x) { - x.name -} - --------------------------------------------------------------------------------- - -(source_file - (function - name: (identifier) - parameters: (function_parameters) - body: (block)) - (function - name: (identifier) - parameters: (function_parameters) - body: (block - (string - (quoted_content)))) - (function - name: (identifier) - parameters: (function_parameters) - body: (block - (integer))) - (function - name: (identifier) - parameters: (function_parameters) - body: (block - (float))) - (function - name: (identifier) - parameters: (function_parameters) - body: (block - (record - name: (constructor_name) - arguments: (arguments - (argument - label: (label) - value: (string - (quoted_content))))))) - (function - name: (identifier) - parameters: (function_parameters) - body: (block - (record - name: (remote_constructor_name - module: (identifier) - name: (constructor_name)) - arguments: (arguments - (argument - label: (label) - value: (string - (quoted_content))))))) - (function - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier))) - body: (block - (identifier))) - (function - name: (identifier) - parameters: (function_parameters) - body: (block - (function_call - function: (identifier) - arguments: (arguments)))) - (function - name: (identifier) - parameters: (function_parameters) - body: (block - (todo - message: (string - (quoted_content))))) - (function - name: (identifier) - parameters: (function_parameters) - body: (block - (panic) - (panic - message: (string - (quoted_content))))) - (function - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier))) - body: (block - (tuple - (identifier) - (integer)))) - (function - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier))) - body: (block - (list - (integer) - (integer) - spread: (identifier)))) - (function - name: (identifier) - parameters: (function_parameters) - body: (block - (bit_string - (bit_string_segment - value: (integer) - options: (bit_string_segment_options - (integer))) - (bit_string_segment - value: (integer) - options: (bit_string_segment_options - (integer))) - (bit_string_segment - value: (integer) - options: (bit_string_segment_options - (integer)))))) - (function - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier))) - body: (block - (anonymous_function - parameters: (function_parameters - (function_parameter - name: (identifier) - type: (type - name: (type_identifier)))) - body: (block - (binary_expression - left: (identifier) - right: (identifier)))))) - (function - name: (identifier) - parameters: (function_parameters) - body: (block - (block - (binary_expression - left: (integer) - right: (integer)) - (string - (quoted_content))))) - (function - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier)) - (function_parameter - name: (identifier))) - body: (block - (case - subjects: (case_subjects - (identifier) - (identifier)) - clauses: (case_clauses - (case_clause - patterns: (case_clause_patterns - (case_clause_pattern - (integer) - (integer)) - (case_clause_pattern - (integer) - (integer))) - value: (record - name: (constructor_name))) - (case_clause - patterns: (case_clause_patterns - (case_clause_pattern - (discard))) - value: (record - name: (constructor_name))))))) - (function - name: (identifier) - parameters: (function_parameters) - body: (block - (let_assert - pattern: (record_pattern - name: (constructor_name) - arguments: (record_pattern_arguments - (record_pattern_argument - pattern: (identifier)))) - value: (record - name: (constructor_name) - arguments: (arguments - (argument - value: (integer))))) - (let_assert - pattern: (identifier) - value: (block - (binary_expression - left: (integer) - right: (integer)) - (string - (quoted_content)))) - (let_assert - pattern: (identifier) - value: (identifier)) - (let_assert - pattern: (tuple_pattern - (identifier) - (discard)) - value: (tuple - (integer) - (integer))) - (let_assert - pattern: (record_pattern - name: (constructor_name) - arguments: (record_pattern_arguments - (record_pattern_argument - pattern: (discard)))) - value: (record - name: (constructor_name) - arguments: (arguments - (argument - value: (integer)))) - message: (string - (quoted_content))) - (let_assert - pattern: (integer) - value: (integer) - message: (block - (binary_expression - left: (string - (quoted_content)) - right: (string - (quoted_content))))))) - (function - name: (identifier) - parameters: (function_parameters) - body: (block - (let - pattern: (identifier) - value: (block - (binary_expression - left: (integer) - right: (integer)) - (string - (quoted_content)))) - (let - pattern: (identifier) - value: (identifier)) - (let - pattern: (tuple_pattern - (identifier) - (discard)) - value: (tuple - (integer) - (integer))))) - (function - name: (identifier) - parameters: (function_parameters) - body: (block - (assert - value: (binary_expression - left: (record - name: (constructor_name)) - right: (record - name: (constructor_name)))) - (assert - value: (binary_expression - left: (function_call - function: (identifier) - arguments: (arguments - (argument - value: (integer)) - (argument - value: (integer)))) - right: (integer))) - (assert - value: (boolean_negation - (identifier))) - (assert - value: (binary_expression - left: (block - (integer) - (integer)) - right: (integer))) - (assert - value: (function_call - function: (field_access - record: (identifier) - field: (label)) - arguments: (arguments - (argument - value: (record - name: (constructor_name) - arguments: (arguments - (argument - value: (integer)))))))))) - (function - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier))) - body: (block - (record_update - constructor: (constructor_name) - spread: (identifier) - arguments: (record_update_arguments - (record_update_argument - label: (label) - value: (string - (quoted_content))) - (record_update_argument - label: (label) - value: (binary_expression - left: (integer) - right: (integer))))) - (record_update - constructor: (remote_constructor_name - module: (identifier) - name: (constructor_name)) - spread: (function_call - function: (identifier) - arguments: (arguments)) - arguments: (record_update_arguments - (record_update_argument - label: (label) - value: (string - (quoted_content))) - (record_update_argument - label: (label) - value: (integer)))))) - (function - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier))) - body: (block - (tuple_access - tuple: (identifier) - index: (integer)))) - (function - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier))) - body: (block - (field_access - record: (identifier) - field: (label))))) - -================================================================================ -Cases -================================================================================ - -fn trial(x, y, z) { - case x { - 1 -> 2 - 2 -> 3 - _ -> 4 - } - - case y { - #(z, _) | #(_, z) if z.1 == 5 -> True - #(_, z) if z.2 >= 4 < 5 || z.1 > 6 -> True - } - - case #(x, y) { - #(1, 2) -> #(3, 4) - _ -> #(5, 6) - } - - case z { - Uri(scheme: Some("https"), ..) -> True - _ -> False - } -} - --------------------------------------------------------------------------------- - -(source_file - (function - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier)) - (function_parameter - name: (identifier)) - (function_parameter - name: (identifier))) - body: (block - (case - subjects: (case_subjects - (identifier)) - clauses: (case_clauses - (case_clause - patterns: (case_clause_patterns - (case_clause_pattern - (integer))) - value: (integer)) - (case_clause - patterns: (case_clause_patterns - (case_clause_pattern - (integer))) - value: (integer)) - (case_clause - patterns: (case_clause_patterns - (case_clause_pattern - (discard))) - value: (integer)))) - (case - subjects: (case_subjects - (identifier)) - clauses: (case_clauses - (case_clause - patterns: (case_clause_patterns - (case_clause_pattern - (tuple_pattern - (identifier) - (discard))) - (case_clause_pattern - (tuple_pattern - (discard) - (identifier)))) - guard: (case_clause_guard - (binary_expression - left: (tuple_access - tuple: (identifier) - index: (integer)) - right: (integer))) - value: (record - name: (constructor_name))) - (case_clause - patterns: (case_clause_patterns - (case_clause_pattern - (tuple_pattern - (discard) - (identifier)))) - guard: (case_clause_guard - (binary_expression - left: (binary_expression - left: (binary_expression - left: (tuple_access - tuple: (identifier) - index: (integer)) - right: (integer)) - right: (integer)) - right: (binary_expression - left: (tuple_access - tuple: (identifier) - index: (integer)) - right: (integer)))) - value: (record - name: (constructor_name))))) - (case - subjects: (case_subjects - (tuple - (identifier) - (identifier))) - clauses: (case_clauses - (case_clause - patterns: (case_clause_patterns - (case_clause_pattern - (tuple_pattern - (integer) - (integer)))) - value: (tuple - (integer) - (integer))) - (case_clause - patterns: (case_clause_patterns - (case_clause_pattern - (discard))) - value: (tuple - (integer) - (integer))))) - (case - subjects: (case_subjects - (identifier)) - clauses: (case_clauses - (case_clause - patterns: (case_clause_patterns - (case_clause_pattern - (record_pattern - name: (constructor_name) - arguments: (record_pattern_arguments - (record_pattern_argument - label: (label) - pattern: (record_pattern - name: (constructor_name) - arguments: (record_pattern_arguments - (record_pattern_argument - pattern: (string - (quoted_content)))))) - (pattern_spread))))) - value: (record - name: (constructor_name))) - (case_clause - patterns: (case_clause_patterns - (case_clause_pattern - (discard))) - value: (record - name: (constructor_name)))))))) - -================================================================================ -Let expressions -================================================================================ - -let foo: fn(Int) -> Int = fn(x) { x } -let fun_ref = float.to_string - --------------------------------------------------------------------------------- - -(source_file - (let - pattern: (identifier) - type: (function_type - parameter_types: (function_parameter_types - (type - name: (type_identifier))) - return_type: (type - name: (type_identifier))) - value: (anonymous_function - parameters: (function_parameters - (function_parameter - name: (identifier))) - body: (block - (identifier)))) - (let - pattern: (identifier) - value: (field_access - record: (identifier) - field: (label)))) - -================================================================================ -Complex binary expressions -================================================================================ - -fn complicated(x, y) { - x > y && x >= y || x + y |> fun() < x * y + 1 -} - --------------------------------------------------------------------------------- - -(source_file - (function - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier)) - (function_parameter - name: (identifier))) - body: (block - (binary_expression - left: (binary_expression - left: (binary_expression - left: (identifier) - right: (identifier)) - right: (binary_expression - left: (identifier) - right: (identifier))) - right: (binary_expression - left: (binary_expression - left: (binary_expression - left: (identifier) - right: (identifier)) - right: (function_call - function: (identifier) - arguments: (arguments))) - right: (binary_expression - left: (binary_expression - left: (identifier) - right: (identifier)) - right: (integer))))))) - -================================================================================ -Complex nesting of field and tuple access -================================================================================ - -fn complex_data_fun(x, y) { - y.barbaz.2.thing - x.1.qux.10 - x.2.foobar.1("Hello", 1) - y.quux.2.quuz(12.34, "a") -} - --------------------------------------------------------------------------------- - -(source_file - (function - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier)) - (function_parameter - name: (identifier))) - body: (block - (field_access - record: (tuple_access - tuple: (field_access - record: (identifier) - field: (label)) - index: (integer)) - field: (label)) - (tuple_access - tuple: (field_access - record: (tuple_access - tuple: (identifier) - index: (integer)) - field: (label)) - index: (integer)) - (function_call - function: (tuple_access - tuple: (field_access - record: (tuple_access - tuple: (identifier) - index: (integer)) - field: (label)) - index: (integer)) - arguments: (arguments - (argument - value: (string - (quoted_content))) - (argument - value: (integer)))) - (function_call - function: (field_access - record: (tuple_access - tuple: (field_access - record: (identifier) - field: (label)) - index: (integer)) - field: (label)) - arguments: (arguments - (argument - value: (float)) - (argument - value: (string - (quoted_content)))))))) - -================================================================================ -Unusual function invocations -================================================================================ - -fn weird(x) { - x(name: "Nubi") - fn (x) { x + 1 }(3) - { - let fun = fn (x) { x + 1 } - }(3) - case 5 { - 5 -> fn (x) { x + 1 } - }(3) - returns_fun(1)(5) -} - --------------------------------------------------------------------------------- - -(source_file - (function - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier))) - body: (block - (function_call - function: (identifier) - arguments: (arguments - (argument - label: (label) - value: (string - (quoted_content))))) - (function_call - function: (anonymous_function - parameters: (function_parameters - (function_parameter - name: (identifier))) - body: (block - (binary_expression - left: (identifier) - right: (integer)))) - arguments: (arguments - (argument - value: (integer)))) - (function_call - function: (block - (let - pattern: (identifier) - value: (anonymous_function - parameters: (function_parameters - (function_parameter - name: (identifier))) - body: (block - (binary_expression - left: (identifier) - right: (integer)))))) - arguments: (arguments - (argument - value: (integer)))) - (function_call - function: (case - subjects: (case_subjects - (integer)) - clauses: (case_clauses - (case_clause - patterns: (case_clause_patterns - (case_clause_pattern - (integer))) - value: (anonymous_function - parameters: (function_parameters - (function_parameter - name: (identifier))) - body: (block - (binary_expression - left: (identifier) - right: (integer))))))) - arguments: (arguments - (argument - value: (integer)))) - (function_call - function: (function_call - function: (identifier) - arguments: (arguments - (argument - value: (integer)))) - arguments: (arguments - (argument - value: (integer))))))) - -================================================================================ -Various discard variables -================================================================================ - -fn ignores(foo, _bar) { - let _baz = 4 - qux(foo, _hole) -} - --------------------------------------------------------------------------------- - -(source_file - (function - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier)) - (function_parameter - name: (discard))) - body: (block - (let - pattern: (discard) - value: (integer)) - (function_call - function: (identifier) - arguments: (arguments - (argument - value: (identifier)) - (argument - value: (hole))))))) - -================================================================================ -Weird lists -================================================================================ - -fn lists(x) { - [] - [1,] - [1 ..x] - [1,..x] -} - --------------------------------------------------------------------------------- - -(source_file - (function - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier))) - body: (block - (list) - (list - (integer)) - (list - (integer) - spread: (identifier)) - (list - (integer) - spread: (identifier))))) - -================================================================================ -Comment in string -================================================================================ - -io.println("// hello world!\n") - --------------------------------------------------------------------------------- - -(source_file - (function_call - function: (field_access - record: (identifier) - field: (label)) - arguments: (arguments - (argument - value: (string - (quoted_content) - (escape_sequence)))))) - -================================================================================ -Call with label shorthand -================================================================================ - -wibble(arg1:, arg2:) - --------------------------------------------------------------------------------- - -(source_file - (function_call - (identifier) - (arguments - (argument - (label)) - (argument - (label))))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/guard_expressions.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/guard_expressions.txt deleted file mode 100644 index 17fad1e69..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/guard_expressions.txt +++ /dev/null @@ -1,73 +0,0 @@ -================================================================================ -Guard Expressions -================================================================================ - -case value { - n if n + 1 > 10 -> True - n if n / 2 < 5 -> False -} - -case value { - n if n -. 1.0 <. 10.0 -> True - n if n *. 2 >. 5 -> False -} - --------------------------------------------------------------------------------- - -(source_file - (case - (case_subjects - (identifier)) - (case_clauses - (case_clause - (case_clause_patterns - (case_clause_pattern - (identifier))) - (case_clause_guard - (binary_expression - (binary_expression - (identifier) - (integer)) - (integer))) - (record - (constructor_name))) - (case_clause - (case_clause_patterns - (case_clause_pattern - (identifier))) - (case_clause_guard - (binary_expression - (binary_expression - (identifier) - (integer)) - (integer))) - (record - (constructor_name))))) - (case - (case_subjects - (identifier)) - (case_clauses - (case_clause - (case_clause_patterns - (case_clause_pattern - (identifier))) - (case_clause_guard - (binary_expression - (binary_expression - (identifier) - (float)) - (float))) - (record - (constructor_name))) - (case_clause - (case_clause_patterns - (case_clause_pattern - (identifier))) - (case_clause_guard - (binary_expression - (binary_expression - (identifier) - (integer)) - (integer))) - (record - (constructor_name)))))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/imports.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/imports.txt deleted file mode 100644 index f141ec741..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/imports.txt +++ /dev/null @@ -1,144 +0,0 @@ -================================================================================ -Imports -================================================================================ - -import a -import a/b - --------------------------------------------------------------------------------- - -(source_file - (import - module: (module)) - (import - module: (module))) - -================================================================================ -Unqualified imports -================================================================================ - -import a.{b} -import a/b.{c, d} -import a/b.{c as d, e} -import a/b.{c, D as E} -import a/b.{A as B, type C as D} - --------------------------------------------------------------------------------- - -(source_file - (import - module: (module) - imports: (unqualified_imports - (unqualified_import - name: (identifier)))) - (import - module: (module) - imports: (unqualified_imports - (unqualified_import - name: (identifier)) - (unqualified_import - name: (identifier)))) - (import - module: (module) - imports: (unqualified_imports - (unqualified_import - name: (identifier) - alias: (identifier)) - (unqualified_import - name: (identifier)))) - (import - module: (module) - imports: (unqualified_imports - (unqualified_import - name: (identifier)) - (unqualified_import - name: (constructor_name) - alias: (constructor_name)))) - (import - module: (module) - imports: (unqualified_imports - (unqualified_import - name: (constructor_name) - alias: (constructor_name)) - (unqualified_import - name: (type_identifier) - alias: (type_identifier))))) - -================================================================================ -Aliased imports -================================================================================ - -import a/b.{c as d} as e -import animal/cat as kitty -import animal.{Cat as Kitty} as a -import animal.{type Cat as Kitty} as a -import animal.{} - --------------------------------------------------------------------------------- - -(source_file - (import - module: (module) - imports: (unqualified_imports - (unqualified_import - name: (identifier) - alias: (identifier))) - alias: (identifier)) - (import - module: (module) - alias: (identifier)) - (import - module: (module) - imports: (unqualified_imports - (unqualified_import - name: (constructor_name) - alias: (constructor_name))) - alias: (identifier)) - (import - module: (module) - imports: (unqualified_imports - (unqualified_import - name: (type_identifier) - alias: (type_identifier))) - alias: (identifier)) - (import - module: (module) - imports: (unqualified_imports))) - -================================================================================ -Type imports -================================================================================ - -import a/b.{type C} -import animal.{type Cat as Kitty} - --------------------------------------------------------------------------------- - -(source_file - (import - module: (module) - imports: (unqualified_imports - (unqualified_import - name: (type_identifier)))) - (import - module: (module) - imports: (unqualified_imports - (unqualified_import - name: (type_identifier) - alias: (type_identifier))))) - -================================================================================ -Discard module imports -================================================================================ - -import wibble.{wobble} as _ - --------------------------------------------------------------------------------- - -(source_file - (import - (module) - (unqualified_imports - (unqualified_import - (identifier))) - (discard))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/pipes.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/pipes.txt deleted file mode 100644 index de6dbd793..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/pipes.txt +++ /dev/null @@ -1,20 +0,0 @@ -================================================================================ -Pipes -================================================================================ - -string -|> iodata.new -|> iodata.reverse - --------------------------------------------------------------------------------- - -(source_file - (binary_expression - (binary_expression - (identifier) - (field_access - (identifier) - (label))) - (field_access - (identifier) - (label)))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/statements.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/statements.txt deleted file mode 100644 index 0b958ff80..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/statements.txt +++ /dev/null @@ -1,59 +0,0 @@ -================================================================================ -Use -================================================================================ - -use <- f() - -use a <- f() - -use a, b, c, d, e <- f() - -use #(a, b) <- blah - -use x : OfType <- f() - --------------------------------------------------------------------------------- - -(source_file - (use - (function_call - (identifier) - (arguments))) - (use - (use_assignments - (use_assignment - (identifier))) - (function_call - (identifier) - (arguments))) - (use - (use_assignments - (use_assignment - (identifier)) - (use_assignment - (identifier)) - (use_assignment - (identifier)) - (use_assignment - (identifier)) - (use_assignment - (identifier))) - (function_call - (identifier) - (arguments))) - (use - (use_assignments - (use_assignment - (tuple_pattern - (identifier) - (identifier)))) - (identifier)) - (use - (use_assignments - (use_assignment - (identifier) - (type - (type_identifier)))) - (function_call - (identifier) - (arguments)))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/strings.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/strings.txt deleted file mode 100644 index 5d9529fc4..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/strings.txt +++ /dev/null @@ -1,38 +0,0 @@ -================================================================================ -Escape sequences -================================================================================ - -"\t\t\r\nHello, CRLF!" -"Β―\\_(ツ)_/Β―" -"\"\"" -"Hello, \e\f" -// πŸ΄β€β˜ οΈ is 🏴 and ☠️ joined with a zero-width joiner (U+200D) -"πŸ΄β€β˜ οΈ == \u{1F3F4}\u{200D}\u{2620}\u{FE0F}" - --------------------------------------------------------------------------------- - -(source_file - (string - (escape_sequence) - (escape_sequence) - (escape_sequence) - (escape_sequence) - (quoted_content)) - (string - (quoted_content) - (escape_sequence) - (quoted_content)) - (string - (escape_sequence) - (escape_sequence)) - (string - (quoted_content) - (escape_sequence) - (escape_sequence)) - (comment) - (string - (quoted_content) - (escape_sequence) - (escape_sequence) - (escape_sequence) - (escape_sequence))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/targets.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/targets.txt deleted file mode 100644 index 43db4820c..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/targets.txt +++ /dev/null @@ -1,48 +0,0 @@ -============== -Target groups -============== - -if erlang { - const a = 1 -} - -if javascript { - const a = 1 - const b = "Hello" -} - ---- - -(source_file - (target_group - target: (target) - (constant - name: (identifier) - value: (integer))) - (target_group - target: (target) - (constant - name: (identifier) - value: (integer)) - (constant - name: (identifier) - value: (string - (quoted_content))))) - -======================== -Target group edge cases -======================== - -if erlang {} -if javascript {const a = 1} - ---- - -(source_file - (target_group - target: (target)) - (target_group - target: (target) - (constant - name: (identifier) - value: (integer)))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/type_aliases.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/type_aliases.txt deleted file mode 100644 index 7abb2c07e..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/type_aliases.txt +++ /dev/null @@ -1,131 +0,0 @@ -================================================================================ -Type aliases -================================================================================ - -type Headers = - List(#(String, String)) -type Box(a) = #(a) -type NamedBox(a) = #(String, a) - --------------------------------------------------------------------------------- - -(source_file - (type_alias - (type_name - name: (type_identifier)) - (type - name: (type_identifier) - arguments: (type_arguments - (type_argument - (tuple_type - (type - name: (type_identifier)) - (type - name: (type_identifier))))))) - (type_alias - (type_name - name: (type_identifier) - parameters: (type_parameters - (type_parameter))) - (tuple_type - (type_var))) - (type_alias - (type_name - name: (type_identifier) - parameters: (type_parameters - (type_parameter))) - (tuple_type - (type - name: (type_identifier)) - (type_var)))) - -================================================================================ -Public type aliases -================================================================================ - -pub type Headers = - List(#(String, String)) -pub type Box(a) = #(a) -pub type NamedBox(a) = #(String, a) - --------------------------------------------------------------------------------- - -(source_file - (type_alias - (visibility_modifier) - (type_name - name: (type_identifier)) - (type - name: (type_identifier) - arguments: (type_arguments - (type_argument - (tuple_type - (type - name: (type_identifier)) - (type - name: (type_identifier))))))) - (type_alias - (visibility_modifier) - (type_name - name: (type_identifier) - parameters: (type_parameters - (type_parameter))) - (tuple_type - (type_var))) - (type_alias - (visibility_modifier) - (type_name - name: (type_identifier) - parameters: (type_parameters - (type_parameter))) - (tuple_type - (type - name: (type_identifier)) - (type_var)))) - -================================================================================ -Public opaque type aliases -================================================================================ - -pub opaque type Headers = - List(#(String, String)) -pub opaque type Box(a) = #(a) -pub opaque type NamedBox(a) = #(String, a) - --------------------------------------------------------------------------------- - -(source_file - (type_alias - (visibility_modifier) - (opacity_modifier) - (type_name - name: (type_identifier)) - (type - name: (type_identifier) - arguments: (type_arguments - (type_argument - (tuple_type - (type - name: (type_identifier)) - (type - name: (type_identifier))))))) - (type_alias - (visibility_modifier) - (opacity_modifier) - (type_name - name: (type_identifier) - parameters: (type_parameters - (type_parameter))) - (tuple_type - (type_var))) - (type_alias - (visibility_modifier) - (opacity_modifier) - (type_name - name: (type_identifier) - parameters: (type_parameters - (type_parameter))) - (tuple_type - (type - name: (type_identifier)) - (type_var)))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/whole_files.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/whole_files.txt deleted file mode 100644 index 6ce6f818b..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/whole_files.txt +++ /dev/null @@ -1,323 +0,0 @@ -================================================================================ -Excerpt from stdlib's base.gleam -================================================================================ - -import gleam/bit_string -import gleam/string - -/// Encodes a BitString into a base 64 encoded string. -/// -pub fn encode64(input: BitString, padding: Bool) -> String { - let encoded = do_encode64(input) - case padding { - True -> encoded - False -> string.replace(encoded, "=", "") - } -} - -if erlang { - external fn do_encode64(BitString) -> String = - "base64" "encode" -} - -if javascript { - external fn do_encode64(BitString) -> String = - "../gleam_stdlib.mjs" "encode64" -} - --------------------------------------------------------------------------------- - -(source_file - (import - module: (module)) - (import - module: (module)) - (statement_comment) - (statement_comment) - (function - (visibility_modifier) - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier) - type: (type - name: (type_identifier))) - (function_parameter - name: (identifier) - type: (type - name: (type_identifier)))) - return_type: (type - name: (type_identifier)) - body: (block - (let - pattern: (identifier) - value: (function_call - function: (identifier) - arguments: (arguments - (argument - value: (identifier))))) - (case - subjects: (case_subjects - (identifier)) - clauses: (case_clauses - (case_clause - patterns: (case_clause_patterns - (case_clause_pattern - (record_pattern - name: (constructor_name)))) - value: (identifier)) - (case_clause - patterns: (case_clause_patterns - (case_clause_pattern - (record_pattern - name: (constructor_name)))) - value: (function_call - function: (field_access - record: (identifier) - field: (label)) - arguments: (arguments - (argument - value: (identifier)) - (argument - value: (string - (quoted_content))) - (argument - value: (string))))))))) - (target_group - target: (target) - (external_function - name: (identifier) - parameters: (function_parameters - (function_parameter - type: (type - name: (type_identifier)))) - return_type: (type - name: (type_identifier)) - body: (external_function_body - (string - (quoted_content)) - (string - (quoted_content))))) - (target_group - target: (target) - (external_function - name: (identifier) - parameters: (function_parameters - (function_parameter - type: (type - name: (type_identifier)))) - return_type: (type - name: (type_identifier)) - body: (external_function_body - (string - (quoted_content)) - (string - (quoted_content)))))) - -================================================================================ -Excerpt from stdlib's bool.gleam -================================================================================ - -//// A type with two possible values, `True` and `False`. Used to indicate whether -//// things are... true or false! -//// -//// Often is it clearer and offers more type safety to define a custom type -//// than to use `Bool`. For example, rather than having a `is_teacher: Bool` -//// field consider having a `role: SchoolRole` field where `SchoolRole` is a custom -//// type that can be either `Student` or `Teacher`. - -import gleam/order.{Order} - -/// Returns the opposite bool value. -/// -/// This is the same as the `!` or `not` operators in some other languages. -/// -/// ## Examples -/// -/// > negate(True) -/// False -/// -/// > negate(False) -/// True -/// -pub fn negate(bool: Bool) -> Bool { - case bool { - True -> False - False -> True - } -} - --------------------------------------------------------------------------------- - -(source_file - (module_comment) - (module_comment) - (module_comment) - (module_comment) - (module_comment) - (module_comment) - (module_comment) - (import - module: (module) - imports: (unqualified_imports - (unqualified_import - name: (constructor_name)))) - (statement_comment) - (statement_comment) - (statement_comment) - (statement_comment) - (statement_comment) - (statement_comment) - (statement_comment) - (statement_comment) - (statement_comment) - (statement_comment) - (statement_comment) - (statement_comment) - (function - (visibility_modifier) - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier) - type: (type - name: (type_identifier)))) - return_type: (type - name: (type_identifier)) - body: (block - (case - subjects: (case_subjects - (identifier)) - clauses: (case_clauses - (case_clause - patterns: (case_clause_patterns - (case_clause_pattern - (record_pattern - name: (constructor_name)))) - value: (record - name: (constructor_name))) - (case_clause - patterns: (case_clause_patterns - (case_clause_pattern - (record_pattern - name: (constructor_name)))) - value: (record - name: (constructor_name)))))))) - -================================================================================ -Trailing commas -================================================================================ - -import animal.{Cat,} - -const foo: #(Int,) = #(1,) -const bar = [1,] -const cat:Cat(String,) = Cat(name: "Nubi",) - -type Thing { - First(name: String,) -} - -external fn foo(String,) -> String = "foo" "bar" - -fn foo(a,) { - myfun(a,) - let Cat(name: name,) = Cat(..a, name: "George",) - let #(a) = #(a,) - let [x,] = [1,] -} - --------------------------------------------------------------------------------- - -(source_file - (import - (module) - (unqualified_imports - (unqualified_import - (constructor_name)))) - (constant - (identifier) - (tuple_type - (type - (type_identifier))) - (tuple - (integer))) - (constant - (identifier) - (list - (integer))) - (constant - (identifier) - (type - (type_identifier) - (type_arguments - (type_argument - (type - (type_identifier))))) - (record - (constructor_name) - (arguments - (argument - (label) - (string - (quoted_content)))))) - (type_definition - (type_name - (type_identifier)) - (data_constructors - (data_constructor - (constructor_name) - (data_constructor_arguments - (data_constructor_argument - (label) - (type - (type_identifier))))))) - (external_function - (identifier) - (function_parameters - (function_parameter - (type - (type_identifier)))) - (type - (type_identifier)) - (external_function_body - (string - (quoted_content)) - (string - (quoted_content)))) - (function - (identifier) - (function_parameters - (function_parameter - (identifier))) - (block - (function_call - (identifier) - (arguments - (argument - (identifier)))) - (let - (record_pattern - (constructor_name) - (record_pattern_arguments - (record_pattern_argument - (label) - (identifier)))) - (record_update - (constructor_name) - (identifier) - (record_update_arguments - (record_update_argument - (label) - (string - (quoted_content)))))) - (let - (tuple_pattern - (identifier)) - (tuple - (identifier))) - (let - (list_pattern - (identifier)) - (list - (integer)))))) diff --git a/vendored_parsers/tree-sitter-gleam/test/highlight/bit_strings.gleam b/vendored_parsers/tree-sitter-gleam/test/highlight/bit_strings.gleam deleted file mode 100644 index 44806f1c4..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/highlight/bit_strings.gleam +++ /dev/null @@ -1,25 +0,0 @@ -<<3>> -// <- punctuation.bracket -//^ number -// ^ punctuation.bracket -<<3:8>> -//^ number -// ^ punctuation.delimiter -// ^ number -<<3:size(8)>> -//^ number -// ^ punctuation.delimiter -// ^ function.builtin -// ^ punctuation.bracket -// ^ number -// ^ punctuation.bracket -<> -// ^ variable -// ^ function.builtin -// ^ punctuation.delimiter -// ^ function.builtin -// ^ number -// ^ function.builtin -// ^ number -// ^ variable -// ^ function.builtin diff --git a/vendored_parsers/tree-sitter-gleam/test/highlight/cases.gleam b/vendored_parsers/tree-sitter-gleam/test/highlight/cases.gleam deleted file mode 100644 index 005259c2d..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/highlight/cases.gleam +++ /dev/null @@ -1,11 +0,0 @@ -pub fn case_with_remainder() { - case todo { - _ if 1 % 2 == 0 -> todo - // ^ number - // ^ operator - // ^ number - // ^ operator - // ^ number - _ -> todo - } -} diff --git a/vendored_parsers/tree-sitter-gleam/test/highlight/constants.gleam b/vendored_parsers/tree-sitter-gleam/test/highlight/constants.gleam deleted file mode 100644 index c0f81cb77..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/highlight/constants.gleam +++ /dev/null @@ -1,10 +0,0 @@ -const f = 100.001e523 -// ^ number -// ^ number -// ^ number - -const s = "Hello, \e\t\n" -// ^ warning -// ^ warning -// ^ string.escape -// ^ string.escape diff --git a/vendored_parsers/tree-sitter-gleam/test/highlight/destructuring.gleam b/vendored_parsers/tree-sitter-gleam/test/highlight/destructuring.gleam deleted file mode 100644 index d7b673745..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/highlight/destructuring.gleam +++ /dev/null @@ -1,32 +0,0 @@ -fn case_case(x: Option(String)) { - // ^ variable.parameter - // ^ type - case #(x, x) { - // ^ variable.parameter - // ^ variable.parameter - #(None, None) -> None - // ^ constructor - // ^ constructor - // ^ constructor - #(Some(y), Some(z)) -> #(y, z) - // ^ constructor - // ^ variable - // ^ constructor - // ^ variable - // ^ variable - // ^ variable - } - - // this is bound above but no longer in scope, - // so it should be interpereted as a module - z.foo() - // <- module -} - -fn shorthand_label_pattern_arg() { - case todo { - Wibble(arg1:, arg2:) -> todo - // ^ property - // ^ property - } -} diff --git a/vendored_parsers/tree-sitter-gleam/test/highlight/echo.gleam b/vendored_parsers/tree-sitter-gleam/test/highlight/echo.gleam deleted file mode 100644 index 51df78dca..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/highlight/echo.gleam +++ /dev/null @@ -1,4 +0,0 @@ -pub fn main() { - echo 2 - // ^ keyword -} diff --git a/vendored_parsers/tree-sitter-gleam/test/highlight/expressions.gleam b/vendored_parsers/tree-sitter-gleam/test/highlight/expressions.gleam deleted file mode 100644 index eb3090147..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/highlight/expressions.gleam +++ /dev/null @@ -1,16 +0,0 @@ -case "12345" { - "123" <> rest -> rest - // <- string - // ^ operator - // ^ variable - _ -> "" - // ^ string -} - - -x -// ^ operator -// ^ variable -panic as "aaah!" -// <- keyword -// ^ keyword -// ^ string diff --git a/vendored_parsers/tree-sitter-gleam/test/highlight/functions.gleam b/vendored_parsers/tree-sitter-gleam/test/highlight/functions.gleam deleted file mode 100644 index 843efe283..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/highlight/functions.gleam +++ /dev/null @@ -1,129 +0,0 @@ -pub fn replace( - // <- keyword - // <- keyword - // ^ function - // ^ punctuation.bracket - in original: String, - // <- property - // ^ variable.parameter - // ^ type - // ^ punctuation.delimiter - each pattern: String, - // <- property - // ^ variable.parameter - // ^ type - // ^ punctuation.delimiter - with replacement: String, - // <- property - // ^ variable.parameter - // ^ type - // ^ punctuation.delimiter -) -> String { - // <- punctuation.delimiter - // ^ type - // ^ punctuation.bracket - string.replace(in: original, each: pattern, with: replacement) - // <- module - // ^ function - // ^ property - // ^ variable.parameter - // ^ property - // ^ variable.parameter - // ^ property - // ^ variable.parameter - original - // ^ variable.parameter - |> string.replace(pattern, replacement) - // <- operator - // ^ module - // ^ function - // ^ variable.parameter - // ^ variable.parameter -} - -fn record_with_fun_field(record) { - let foo = Bar(baz: fn(x) { x + 1 }) - // ^ constructor - foo.baz(41) - // <- variable - // ^ property - record.foobar("hello") - // ^ variable.parameter - // ^ property - string.replace("hello", "l", "o") - // ^ module - // ^ function -} - -fn trial(uri) { - // ^ variable.parameter - case uri { - // ^ variable.parameter - Uri(scheme: None) -> True - // <- constructor - // ^ property - // ^ constructor - // ^ constructor - _ -> False - // <- comment.unused - } -} - -fn my_uri_to_string(my_uri) -> String { - uri.to_string(my_uri) - // <- module - // ^ function - // ^ variable.parameter -} - -fn myfun(argument) { - let local_fun = fn(x) { x + 1 } - // ^ variable - // ^ variable.parameter - // ^ variable.parameter - - argument - // ^ variable.parameter - |> local_fun - // <- operator - // ^ variable - |> module_fun - // ^ function - - module_fun(local_fun(argument)) - // ^ function - // ^ variable - // ^ variable.parameter -} - -fn negate(arg) { - !arg - // <- operator - // ^ variable.parameter -} - -fn comment_string_test() { - io.println("// hello world!") - // <- module - // ^ function - // ^ string -} - -fn let_assert_test() { - let assert #(x, _) = #(1, 2) - // <- keyword - // ^ keyword -} - -fn assert_test() { - assert x == add(1, 4) - // <- keyword - // ^ function -} - -fn punned_call_arg_test() { - wibble(arg:, arg2:) - // ^ function - // ^ property - // ^ property -} diff --git a/vendored_parsers/tree-sitter-gleam/test/highlight/modules.gleam b/vendored_parsers/tree-sitter-gleam/test/highlight/modules.gleam deleted file mode 100644 index a10336957..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/highlight/modules.gleam +++ /dev/null @@ -1,84 +0,0 @@ -import gleam/io -// ^ module -// ^ module -// ^ module -import animal/cat as kitty -// ^ module -// ^ module - -import animal/cat.{Cat, type Cat} -// ^ constructor -// ^ keyword -// ^ type - -import wibble.{wobble} as _ -// ^ module -// ^ function -// ^ comment.unused - -pub fn main() { - io.println("hello world") - // <- module -} - -type MyType { - MyType(func: fn() -> Int) -} - -fn record_access_case(param: MyType) { - let binding = MyType(func: fn() { 42 }) - let _ = binding.func() - // ^ comment.unused - // ^ variable - let _ = param.func() - // ^ comment.unused - // ^ variable.parameter -} - -fn pipe_operator_case(string: String) { - string - // <- variable.parameter - |> iodata.new - // ^ module - |> iodata.reverse - // ^ module -} - -fn remote_type_case() { - gleam.Ok(1) - // <- module - // ^ punctuation.delimiter - // ^ constructor -} - -fn make_cat() -> kitty.Cat { - // ^ module - // ^ type - kitty.Cat(name: "Nubi") - // ^ module - // ^ constructor -} - -@target(erlang) -// <- attribute -// ^ attribute -// ^ constant -pub external fn display() -> Bool = "erlang" "display" - -@target(erlang) -@external(erlang, "wobble", "main") -// <- attribute -// ^ attribute -// ^ constant -// ^ string -// string -pub fn main() -> Int - -@deprecated(since: "1.2.0", replacement: wobble) -// <- attribute -// ^ attribute -// ^ property -// ^ string -// ^ property -// ^constant -pub fn wibble() { todo } diff --git a/vendored_parsers/tree-sitter-gleam/test/highlight/records.gleam b/vendored_parsers/tree-sitter-gleam/test/highlight/records.gleam deleted file mode 100644 index 4cf8c9a5e..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/highlight/records.gleam +++ /dev/null @@ -1,28 +0,0 @@ -pub type User { - // ^ type - User(name: String) - // <- constructor - // ^ property - // ^ type -} - -pub fn new(name: String) { - // ^ variable.parameter - User(name: name) - // ^ property - // ^ variable.parameter -} - -pub fn access() { - let config = Config() - config.connection.host - // ^ variable - // ^ property - // ^ property -} - -pub fn record_update_shorthand_label() { - User(..user, name:) - // ^ constructor - // ^ property -} diff --git a/vendored_parsers/tree-sitter-gleam/test/highlight/reserved.gleam b/vendored_parsers/tree-sitter-gleam/test/highlight/reserved.gleam deleted file mode 100644 index c2b23b964..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/highlight/reserved.gleam +++ /dev/null @@ -1,14 +0,0 @@ -auto -// <- error -delegate -// <- error -derive -// <- error -else -// <- error -implement -// <- error -macro -// <- error -test -// <- error diff --git a/vendored_parsers/tree-sitter-gleam/test/integration/.gitignore b/vendored_parsers/tree-sitter-gleam/test/integration/.gitignore deleted file mode 100644 index d6b7ef32c..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/integration/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/vendored_parsers/tree-sitter-gleam/test/tags/frame.gleam b/vendored_parsers/tree-sitter-gleam/test/tags/frame.gleam deleted file mode 100644 index 2c080fb75..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/tags/frame.gleam +++ /dev/null @@ -1,75 +0,0 @@ -import gleam/option.{type Option, Some, None} -// ^ reference.module -// ^ reference.type -// ^ reference.constructor -// ^ reference.constructor -import gleam/bit_builder -// ^ reference.module - -pub type FrameData { - // ^ definition.type - Text(String) - // <- definition.constructor - // ^ reference.type - Binary(BitString) - Continuation(BitString) - Ping(BitString) - Pong(BitString) - Close(code: Option(Int), reason: Option(String)) - // <- definition.constructor - // ^ reference.type - // ^ reference.type - // ^ reference.type - // ^ reference.type -} - -pub type Frame { - // ^ definition.type - Frame(reserved: BitString, mask: Option(BitString), data: FrameData, fin: Bool) -} - -fn encode_frame(frame: Frame) -> bit_builder.BitBuilder { -// ^ definition.function -// ^ reference.type -// ^ reference.module -// ^ reference.type - let fin = - case frame.fin { - True -> <<1:size(1)>> - False -> <<0:size(1)>> - } - - let opcode = - case frame.data { - Continuation(_) -> <<0x0:size(1)>> - // <- reference.constructor - Text(_) -> <<0x1:size(1)>> - Binary(_) -> <<0x2:size(1)>> - // 0x3-7 reserved for future non-control frames - Close(..) -> <<0x8:size(1)>> - Pong(_) -> <<0x9:size(1)>> - Pong(_) -> <<0xA:size(1)>> - } - - let is_masked_bit = - case frame.mask { - Some(_) -> <<1:size(1)>> - None -> <<0:size(1)>> - } - - bit_builder.new() - // <- reference.module - // ^ reference.function - |> bit_builder.append(fin) - // ^ reference.function - |> bit_builder.append(frame.reserved) - |> bit_builder.append(opcode) - |> bit_builder.append(is_masked_bit) - |> bit_builder.append(option.unwrap(frame.mask, <<>>)) - // ^ reference.module - // ^ reference.module - // ^ reference.function - |> bit_builder.append(mask_data(frame)) - // ^ reference.function -} - diff --git a/vendored_parsers/tree-sitter-gleam/test/tags/functions.gleam b/vendored_parsers/tree-sitter-gleam/test/tags/functions.gleam deleted file mode 100644 index dc1cf0d53..000000000 --- a/vendored_parsers/tree-sitter-gleam/test/tags/functions.gleam +++ /dev/null @@ -1,10 +0,0 @@ -fn record_with_fun_field(record) { - let foo = Bar(baz: fn(x) { x + 1 }) - // ^ reference.constructor - foo.baz(41) - record.foobar("hello") - - string.replace("hello", "l", "o") - // ^ reference.module - // ^ reference.function -}