diff --git a/.gitattributes b/.gitattributes index 7e2cae0c..79475a5e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -6,7 +6,7 @@ src/parser.c linguist-generated src/tree_sitter/* linguist-generated # C bindings -bindings/c/* linguist-generated +bindings/c/** linguist-generated CMakeLists.txt linguist-generated Makefile linguist-generated @@ -35,3 +35,7 @@ go.sum linguist-generated bindings/swift/** linguist-generated Package.swift linguist-generated Package.resolved linguist-generated + +# Zig bindings +build.zig linguist-generated +build.zig.zon linguist-generated diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d17451f6..aa8fb6b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,19 +3,9 @@ name: CI on: push: branches: [master] - paths: - - grammar.js - - src/** - - test/** - - bindings/** - - binding.gyp pull_request: - paths: - - grammar.js - - src/** - - test/** - - bindings/** - - binding.gyp + branches: [master] + workflow_dispatch: concurrency: group: ${{github.workflow}}-${{github.ref}} @@ -24,16 +14,20 @@ concurrency: jobs: test: name: Test parser - runs-on: ${{matrix.os}} + runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-14] + os: [ubuntu-latest, windows-latest, macos-latest] steps: - - name: Checkout repository - uses: actions/checkout@v4 + - name: Set up repository + uses: actions/checkout@v5 + - name: Set up tree-sitter - uses: tree-sitter/setup-action/cli@v1 + uses: tree-sitter/setup-action@v2 + with: + install-lib: false + - name: Set up examples run: |- git clone https://github.com/joshvera/effects examples/effects --single-branch --depth=1 --filter=blob:none @@ -45,10 +39,12 @@ jobs: git clone https://github.com/AndrasKovacs/flatparse examples/flatparse --single-branch --depth=1 --filter=blob:none git clone https://github.com/ekmett/lens examples/lens --single-branch --depth=1 --filter=blob:none git clone https://github.com/tek/tsh-test-ghc examples/tsh-test-ghc --single-branch --depth=1 --filter=blob:none + - name: Run tests uses: tree-sitter/parser-test-action@v2 with: test-rust: ${{runner.os == 'Linux'}} + - name: Parse examples id: examples uses: tree-sitter/parse-action@v4 @@ -71,3 +67,23 @@ jobs: !examples/tsh-test-ghc/compiler/GHC/Builtin/PrimOps.hs invalid-files: | !examples/haskell-language-server/test/testdata/FuncTestFail.hs + query: + name: Validate queries + runs-on: ubuntu-latest + steps: + - name: Set up repository + uses: actions/checkout@v5 + + - name: Set up tree-sitter + uses: tree-sitter/setup-action@v2 + with: + install-lib: false + + - name: Build parser + run: tree-sitter build + + - name: Set up ts_query_ls + run: curl -fL https://github.com/ribru17/ts_query_ls/releases/latest/download/ts_query_ls-x86_64-unknown-linux-gnu.tar.gz | tar -xz + + - name: Check queries + run: ./ts_query_ls check -f queries/ diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 35459aa2..00000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Publish packages - -on: - push: - tags: ["*"] - -permissions: - contents: write - id-token: write - attestations: write - -jobs: - github: - uses: tree-sitter/workflows/.github/workflows/release.yml@main - with: - generate: true - attestations: true - npm: - uses: tree-sitter/workflows/.github/workflows/package-npm.yml@main - secrets: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - with: - generate: true - crates: - uses: tree-sitter/workflows/.github/workflows/package-crates.yml@main - secrets: - CARGO_REGISTRY_TOKEN: ${{secrets.CARGO_REGISTRY_TOKEN}} - with: - generate: true - pypi: - uses: tree-sitter/workflows/.github/workflows/package-pypi.yml@main - secrets: - PYPI_API_TOKEN: ${{secrets.PYPI_API_TOKEN}} - with: - generate: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 00000000..b677185f --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,21 @@ +name: Create release + +on: + push: + tags: ["*"] + workflow_dispatch: + +concurrency: + group: ${{github.workflow}}-${{github.ref}} + cancel-in-progress: true + +permissions: + contents: write + id-token: write + attestations: write + +jobs: + release: + uses: tree-sitter/workflows/.github/workflows/release.yml@main + with: + attestations: true diff --git a/.gitignore b/.gitignore index 308fcab2..87a0c80c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,16 @@ # Rust artifacts target/ +Cargo.lock # Node artifacts build/ prebuilds/ node_modules/ +package-lock.json # Swift artifacts .build/ +Package.resolved # Go artifacts _obj/ @@ -25,6 +28,13 @@ dist/ *.dylib *.dll *.pc +*.exp +*.lib + +# Zig artifacts +.zig-cache/ +zig-cache/ +zig-out/ # Example dirs /examples/*/ diff --git a/.tsqueryrc.json b/.tsqueryrc.json new file mode 100644 index 00000000..3619c9bb --- /dev/null +++ b/.tsqueryrc.json @@ -0,0 +1,4 @@ +{ + "$schema": "https://raw.githubusercontent.com/ribru17/ts_query_ls/refs/heads/master/schemas/config.json", + "parser_install_directories": ["."] +} diff --git a/CMakeLists.txt b/CMakeLists.txt index d66c3470..35465808 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,7 +28,11 @@ add_library(tree-sitter-haskell src/parser.c) if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/src/scanner.c) target_sources(tree-sitter-haskell PRIVATE src/scanner.c) endif() -target_include_directories(tree-sitter-haskell PRIVATE src) +target_include_directories(tree-sitter-haskell + PRIVATE src + INTERFACE $ + $) + target_compile_definitions(tree-sitter-haskell PRIVATE $<$:TREE_SITTER_REUSE_ALLOCATOR> @@ -46,8 +50,9 @@ configure_file(bindings/c/tree-sitter-haskell.pc.in include(GNUInstallDirs) -install(FILES bindings/c/tree-sitter-haskell.h - DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/tree_sitter") +install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/bindings/c/tree_sitter" + DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}" + FILES_MATCHING PATTERN "*.h") install(FILES "${CMAKE_CURRENT_BINARY_DIR}/tree-sitter-haskell.pc" DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/pkgconfig") install(TARGETS tree-sitter-haskell diff --git a/Cargo.lock b/Cargo.lock index c45f12fd..33b14dc3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13,19 +13,72 @@ dependencies = [ [[package]] name = "cc" -version = "1.1.37" +version = "1.2.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40545c26d092346d8a8dab71ee48e7685a7a9cba76e634790c215b41a4a7b4cf" +checksum = "37521ac7aabe3d13122dc382493e20c9416f299d2ccd5b3a5340a2570cdeb0f3" dependencies = [ + "find-msvc-tools", "shlex", ] +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "find-msvc-tools" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127" + +[[package]] +name = "hashbrown" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" + +[[package]] +name = "indexmap" +version = "2.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f" +dependencies = [ + "equivalent", + "hashbrown", +] + +[[package]] +name = "itoa" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" + [[package]] name = "memchr" version = "2.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" +[[package]] +name = "proc-macro2" +version = "1.0.103" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.41" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1" +dependencies = [ + "proc-macro2", +] + [[package]] name = "regex" version = "1.11.1" @@ -55,21 +108,89 @@ version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" +[[package]] +name = "ryu" +version = "1.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" + +[[package]] +name = "serde" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.145" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" +dependencies = [ + "indexmap", + "itoa", + "memchr", + "ryu", + "serde", + "serde_core", +] + [[package]] name = "shlex" version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" +[[package]] +name = "streaming-iterator" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520" + +[[package]] +name = "syn" +version = "2.0.108" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + [[package]] name = "tree-sitter" -version = "0.23.2" +version = "0.25.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0203df02a3b6dd63575cc1d6e609edc2181c9a11867a271b25cfd2abff3ec5ca" +checksum = "78f873475d258561b06f1c595d93308a7ed124d9977cb26b148c2084a4a3cc87" dependencies = [ "cc", "regex", "regex-syntax", + "serde_json", + "streaming-iterator", "tree-sitter-language", ] @@ -87,3 +208,9 @@ name = "tree-sitter-language" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e8ddffe35a0e5eeeadf13ff7350af564c6e73993a24db62caee1822b185c2600" + +[[package]] +name = "unicode-ident" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" diff --git a/Cargo.toml b/Cargo.toml index 0fe0fe58..d4ea6e53 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ edition = "2021" autoexamples = false build = "bindings/rust/build.rs" -include = ["LICENSE", "bindings/rust/*", "grammar.js", "queries/*", "src/*", "tree-sitter.json"] +include = ["/LICENSE", "bindings/rust/*", "grammar.js", "queries/*", "src/*", "tree-sitter.json"] [lib] path = "bindings/rust/lib.rs" @@ -24,4 +24,4 @@ tree-sitter-language = "0.1" cc = "1.1.15" [dev-dependencies] -tree-sitter = "0.23" +tree-sitter = "0.25.10" diff --git a/Makefile b/Makefile index 238960b3..1b1cb990 100644 --- a/Makefile +++ b/Makefile @@ -70,7 +70,7 @@ $(PARSER): $(SRC_DIR)/grammar.json install: all install -d '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter '$(DESTDIR)$(PCLIBDIR)' '$(DESTDIR)$(LIBDIR)' - install -m644 bindings/c/$(LANGUAGE_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h + install -m644 bindings/c/tree_sitter/$(LANGUAGE_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h install -m644 $(LANGUAGE_NAME).pc '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc install -m644 lib$(LANGUAGE_NAME).a '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a install -m755 lib$(LANGUAGE_NAME).$(SOEXT) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) diff --git a/Package.swift b/Package.swift index 91011527..c63bbf2b 100644 --- a/Package.swift +++ b/Package.swift @@ -7,7 +7,7 @@ let package = Package( .library(name: "TreeSitterHaskell", targets: ["TreeSitterHaskell"]), ], dependencies: [ - .package(url: "https://github.com/ChimeHQ/SwiftTreeSitter", from: "0.8.0"), + .package(name: "SwiftTreeSitter", url: "https://github.com/tree-sitter/swift-tree-sitter", from: "0.8.0"), ], targets: [ .target( diff --git a/bindings/c/tree-sitter-haskell.h b/bindings/c/tree_sitter/tree-sitter-haskell.h similarity index 100% rename from bindings/c/tree-sitter-haskell.h rename to bindings/c/tree_sitter/tree-sitter-haskell.h diff --git a/bindings/python/tests/test_binding.py b/bindings/python/tests/test_binding.py index 68d484dd..2227294c 100644 --- a/bindings/python/tests/test_binding.py +++ b/bindings/python/tests/test_binding.py @@ -6,6 +6,6 @@ class TestLanguage(TestCase): def test_can_load_grammar(self): try: - tree_sitter.Language(tree_sitter_haskell.language()) + Parser(Language(tree_sitter_haskell.language())) except Exception: self.fail("Error loading Haskell grammar") diff --git a/bindings/python/tree_sitter_haskell/binding.c b/bindings/python/tree_sitter_haskell/binding.c index 7b6552f0..20b2ed02 100644 --- a/bindings/python/tree_sitter_haskell/binding.c +++ b/bindings/python/tree_sitter_haskell/binding.c @@ -8,6 +8,13 @@ static PyObject* _binding_language(PyObject *Py_UNUSED(self), PyObject *Py_UNUSE return PyCapsule_New(tree_sitter_haskell(), "tree_sitter.Language", NULL); } +static struct PyModuleDef_Slot slots[] = { +#ifdef Py_GIL_DISABLED + {Py_mod_gil, Py_MOD_GIL_NOT_USED}, +#endif + {0, NULL} +}; + static PyMethodDef methods[] = { {"language", _binding_language, METH_NOARGS, "Get the tree-sitter language for this grammar."}, @@ -18,10 +25,11 @@ static struct PyModuleDef module = { .m_base = PyModuleDef_HEAD_INIT, .m_name = "_binding", .m_doc = NULL, - .m_size = -1, - .m_methods = methods + .m_size = 0, + .m_methods = methods, + .m_slots = slots, }; PyMODINIT_FUNC PyInit__binding(void) { - return PyModule_Create(&module); + return PyModuleDef_Init(&module); } diff --git a/pyproject.toml b/pyproject.toml index 866dfced..280333bb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ classifiers = [ "Topic :: Text Processing :: Linguistic", "Typing :: Typed", ] -requires-python = ">=3.9" +requires-python = ">=3.10" license.text = "MIT" readme = "README.md" @@ -28,8 +28,8 @@ name = "Torsten Schmits" Homepage = "https://github.com/tree-sitter/tree-sitter-haskell" [project.optional-dependencies] -core = ["tree-sitter~=0.22"] +core = ["tree-sitter~=0.24"] [tool.cibuildwheel] -build = "cp39-*" +build = "cp310-*" build-frontend = "build" diff --git a/queries/highlights.scm b/queries/highlights.scm index a81cced8..2e537d76 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -35,7 +35,7 @@ (comment) @comment -((haddock) @comment.documentation) +(haddock) @comment.documentation ; ---------------------------------------------------------------------------- ; Punctuation @@ -99,7 +99,6 @@ ; (module) @constructor) ; . ; (module)) - (module (module_id) @module) @@ -130,12 +129,12 @@ ; ---------------------------------------------------------------------------- ; Functions and variables -(decl - [ - name: (variable) @function - names: (binding_list (variable) @function) - ]) - +; (decl +; [ +; name: (variable) @function +; names: (binding_list +; (variable) @function) +; ]) (decl/bind name: (variable) @variable) @@ -145,15 +144,14 @@ name: (variable) @variable type: (type)) -((decl/signature - name: (variable) @_name - type: (type)) - . - (decl - name: (variable) @variable) - match: (_) - (#eq? @_name @variable)) - +; ((decl/signature +; name: (variable) @_name +; type: (type)) +; . +; (decl +; name: (variable) @variable) +; match: (_) +; (#eq? @_name @variable)) ; but consider a type that involves 'IO' a decl/function (decl/signature name: (variable) @function @@ -161,17 +159,16 @@ constructor: (name) @_type) (#eq? @_type "IO")) -((decl/signature - name: (variable) @_name - type: (type/apply - constructor: (name) @_type) - (#eq? @_type "IO")) - . - (decl - name: (variable) @function) - match: (_) - (#eq? @_name @function)) - +; ((decl/signature +; name: (variable) @_name +; type: (type/apply +; constructor: (name) @_type) +; (#eq? @_type "IO")) +; . +; (decl +; name: (variable) @function) +; match: (_) +; (#eq? @_name @function)) ((decl/signature) @function . (decl/function @@ -225,10 +222,10 @@ ; decl/function calls with infix operators ([ - (expression/variable) @function.call - (expression/qualified - (variable) @function.call) - ] + (expression/variable) @function.call + (expression/qualified + (variable) @function.call) +] . (operator) @_op (#any-of? @_op "$" "<$>" ">>=" "=<<")) @@ -237,7 +234,8 @@ ((infix [ (operator) - (infix_id (variable)) + (infix_id + (variable)) ] ; infix or `func` . [ @@ -250,12 +248,11 @@ (#any-of? @_op "$" "<$>" "=<<")) ; decl/function composition, arrows, monadic composition (lhs) -( - [ - (expression/variable) @function - (expression/qualified - (variable) @function) - ] +([ + (expression/variable) @function + (expression/qualified + (variable) @function) +] . (operator) @_op (#any-of? @_op "." ">>>" "***" ">=>" "<=<")) @@ -264,7 +261,8 @@ ((infix [ (operator) - (infix_id (variable)) + (infix_id + (variable)) ] ; infix or `func` . [ @@ -427,7 +425,6 @@ ; ---------------------------------------------------------------------------- ; Fields - (field_name (variable) @variable.member) @@ -437,7 +434,6 @@ (children (variable) @variable.member)) - ; ---------------------------------------------------------------------------- ; Spell checking (comment) @spell diff --git a/queries/locals.scm b/queries/locals.scm index 65dcf19f..7177f9de 100644 --- a/queries/locals.scm +++ b/queries/locals.scm @@ -1,4 +1,9 @@ -(signature name: (variable)) @local.definition -(function name: (variable)) @local.definition +(signature + name: (variable)) @local.definition + +(function + name: (variable)) @local.definition + (pattern/variable) @local.definition + (expression/variable) @local.reference diff --git a/setup.py b/setup.py index d8922772..d4877f8f 100644 --- a/setup.py +++ b/setup.py @@ -1,27 +1,49 @@ -from os.path import isdir, join -from platform import system +from os import path +from sysconfig import get_config_var from setuptools import Extension, find_packages, setup from setuptools.command.build import build +from setuptools.command.build_ext import build_ext +from setuptools.command.egg_info import egg_info from wheel.bdist_wheel import bdist_wheel class Build(build): def run(self): - if isdir("queries"): - dest = join(self.build_lib, "tree_sitter_haskell", "queries") + if path.isdir("queries"): + dest = path.join(self.build_lib, "tree_sitter_haskell", "queries") self.copy_tree("queries", dest) super().run() +class BuildExt(build_ext): + def build_extension(self, ext: Extension): + if self.compiler.compiler_type != "msvc": + ext.extra_compile_args = ["-std=c11", "-fvisibility=hidden"] + else: + ext.extra_compile_args = ["/std:c11", "/utf-8"] + if path.exists("src/scanner.c"): + ext.sources.append("src/scanner.c") + if ext.py_limited_api: + ext.define_macros.append(("Py_LIMITED_API", "0x030A0000")) + super().build_extension(ext) + + class BdistWheel(bdist_wheel): def get_tag(self): python, abi, platform = super().get_tag() if python.startswith("cp"): - python, abi = "cp39", "abi3" + python, abi = "cp310", "abi3" return python, abi, platform +class EggInfo(egg_info): + def find_sources(self): + super().find_sources() + self.filelist.recursive_include("queries", "*.scm") + self.filelist.include("src/tree_sitter/*.h") + + setup( packages=find_packages("bindings/python"), package_dir={"": "bindings/python"}, @@ -36,27 +58,20 @@ def get_tag(self): sources=[ "bindings/python/tree_sitter_haskell/binding.c", "src/parser.c", - "src/scanner.c", - ], - extra_compile_args=[ - "-std=c11", - "-fvisibility=hidden", - ] if system() != "Windows" else [ - "/std:c11", - "/utf-8", ], define_macros=[ - ("Py_LIMITED_API", "0x03090000"), ("PY_SSIZE_T_CLEAN", None), ("TREE_SITTER_HIDE_SYMBOLS", None), ], include_dirs=["src"], - py_limited_api=True, + py_limited_api=not get_config_var("Py_GIL_DISABLED"), ) ], cmdclass={ "build": Build, - "bdist_wheel": BdistWheel + "build_ext": BuildExt, + "bdist_wheel": BdistWheel, + "egg_info": EggInfo, }, zip_safe=False ) diff --git a/src/grammar.json b/src/grammar.json index 755b83e8..4a7a63c8 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -13263,5 +13263,6 @@ "statement", "qualifier", "guard" - ] -} + ], + "reserved": {} +} \ No newline at end of file diff --git a/src/node-types.json b/src/node-types.json index b1e48445..61eb9be8 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -6127,7 +6127,8 @@ }, { "type": "comment", - "named": true + "named": true, + "extra": true }, { "type": "constructor", @@ -6135,7 +6136,8 @@ }, { "type": "cpp", - "named": true + "named": true, + "extra": true }, { "type": "d", @@ -6191,7 +6193,8 @@ }, { "type": "haddock", - "named": true + "named": true, + "extra": true }, { "type": "hiding", @@ -6283,7 +6286,8 @@ }, { "type": "pragma", - "named": true + "named": true, + "extra": true }, { "type": "qualified", diff --git a/src/parser.c b/src/parser.c index d1a79db6..d67e9fe6 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,10 +1,12 @@ +/* Automatically @generated by tree-sitter v0.25.10 */ + #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 14 +#define LANGUAGE_VERSION 15 #define STATE_COUNT 12862 #define LARGE_STATE_COUNT 2378 #define SYMBOL_COUNT 537 @@ -13,7 +15,9 @@ #define EXTERNAL_TOKEN_COUNT 49 #define FIELD_COUNT 84 #define MAX_ALIAS_SEQUENCE_LENGTH 9 +#define MAX_RESERVED_WORD_SET_SIZE 0 #define PRODUCTION_ID_COUNT 560 +#define SUPERTYPE_COUNT 14 enum ts_symbol_identifiers { sym_variable = 1, @@ -4079,7 +4083,7 @@ static const char * const ts_field_names[] = { [field_via] = "via", }; -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { +static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 2}, [2] = {.index = 2, .length = 1}, [4] = {.index = 3, .length = 2}, @@ -19848,7 +19852,386 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [12861] = 12254, }; -static TSCharacterRange sym_variable_character_set_1[] = { +static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { + sym_class_decl, + sym_constraint, + sym_constraints, + sym_decl, + sym_declaration, + sym_expression, + sym_guard, + sym_instance_decl, + sym_pattern, + sym_qualifier, + sym_quantified_type, + sym_statement, + sym_type, + sym_type_param, +}; + +static const TSMapSlice ts_supertype_map_slices[] = { + [sym_class_decl] = {.index = 0, .length = 9}, + [sym_constraint] = {.index = 9, .length = 49}, + [sym_constraints] = {.index = 58, .length = 14}, + [sym_decl] = {.index = 72, .length = 3}, + [sym_declaration] = {.index = 75, .length = 19}, + [sym_expression] = {.index = 94, .length = 75}, + [sym_guard] = {.index = 169, .length = 3}, + [sym_instance_decl] = {.index = 172, .length = 5}, + [sym_pattern] = {.index = 177, .length = 60}, + [sym_qualifier] = {.index = 237, .length = 5}, + [sym_quantified_type] = {.index = 242, .length = 13}, + [sym_statement] = {.index = 255, .length = 4}, + [sym_type] = {.index = 259, .length = 59}, + [sym_type_param] = {.index = 318, .length = 10}, +}; + +static const TSSymbol ts_supertype_map_entries[] = { + [0] = + sym__assoc_datafam, + sym__assoc_tyfam, + sym__assoc_tyinst, + sym_data_family, + sym_decl, + sym_default_signature, + sym_fixity, + sym_type_family, + sym_type_instance, + [9] = + sym__class_apply, + sym__class_infix, + sym__consym_prefix, + sym__ctr_parens, + sym__ctr_tuple, + sym__datacon_infix, + sym__exp_apply, + sym__exp_infix, + sym__exp_parens, + sym__exp_tuple, + sym__function_head_infix, + sym__pat_apply, + sym__pat_infix, + sym__pat_parens, + sym__pat_tuple, + sym__promoted_tyconops_alias, + sym__promoted_tycons_alias, + sym__qconsym_prefix, + sym__qfield_name, + sym__qtycon_arrow, + sym__qualified_arrow, + sym__qualified_constructor, + sym__qualified_consym, + sym__qualified_type, + sym__qualified_variable, + sym__qualified_varsym, + sym__qvarsym_prefix, + sym__tycon_arrow, + sym__type_apply, + sym__type_head_infix, + sym__type_head_parens, + sym__type_infix, + sym__type_instance_head_parens, + sym__type_param_parens, + sym__type_param_wildcard, + sym__type_parens, + sym__type_promoted, + sym__type_tuple, + sym__varsym_prefix, + sym_literal, + sym_name, + sym_prefix_tuple, + sym_prefix_unboxed_sum, + sym_prefix_unboxed_tuple, + sym_quasiquote, + sym_splice, + sym_unboxed_unit, + sym_unit, + sym_variable, + [58] = + sym__ctr_context, + sym__ctr_forall, + sym__ctr_signature, + sym__exp_signature, + sym__pat_signature, + sym__patsyn_signature, + sym__qtype_context, + sym__qtype_forall, + sym__type_signature, + sym_constraint, + sym_context, + sym_forall, + sym_implicit_parameter, + sym_signature, + [72] = + sym_bind, + sym_function, + sym_signature, + [75] = + sym_class, + sym_data_family, + sym_data_instance, + sym_data_type, + sym_decl, + sym_default_types, + sym_deriving_instance, + sym_fixity, + sym_foreign_export, + sym_foreign_import, + sym_instance, + sym_kind_signature, + sym_newtype, + sym_pattern_synonym, + sym_role_annotation, + sym_top_splice, + sym_type_family, + sym_type_instance, + sym_type_synomym, + [94] = + alias_sym_constructor, + sym__class_apply, + sym__class_infix, + sym__consym_prefix, + sym__ctr_parens, + sym__ctr_tuple, + sym__datacon_infix, + sym__datacon_unboxed_sum, + sym__exp_apply, + sym__exp_arithmetic_sequence, + sym__exp_case, + sym__exp_conditional, + sym__exp_do, + sym__exp_infix, + sym__exp_lambda, + sym__exp_lambda_case, + sym__exp_lambda_cases, + sym__exp_let_in, + sym__exp_list_comprehension, + sym__exp_multi_way_if, + sym__exp_negation, + sym__exp_parens, + sym__exp_projection, + sym__exp_projection_selector, + sym__exp_quote, + sym__exp_record, + sym__exp_section_left, + sym__exp_section_right, + sym__exp_th_quoted_name, + sym__exp_tuple, + sym__exp_typed_quote, + sym__exp_unboxed_sum, + sym__exp_unboxed_tuple, + sym__function_head_infix, + sym__pat_apply, + sym__pat_infix, + sym__pat_negation, + sym__pat_parens, + sym__pat_tuple, + sym__pat_unboxed_sum, + sym__pat_unboxed_tuple, + sym__qconsym_prefix, + sym__qfield_name, + sym__qtycon_arrow, + sym__qualified_arrow, + sym__qualified_constructor, + sym__qualified_consym, + sym__qualified_type, + sym__qualified_variable, + sym__qualified_varsym, + sym__qvarsym_prefix, + sym__tycon_arrow, + sym__type_apply, + sym__type_head_infix, + sym__type_head_parens, + sym__type_infix, + sym__type_instance_head_parens, + sym__type_list, + sym__type_param_parens, + sym__type_parens, + sym__type_tuple, + sym__type_unboxed_sum, + sym__type_unboxed_tuple, + sym__varsym_prefix, + sym_implicit_variable, + sym_label, + sym_literal, + sym_prefix_tuple, + sym_prefix_unboxed_sum, + sym_prefix_unboxed_tuple, + sym_quasiquote, + sym_splice, + sym_unboxed_unit, + sym_unit, + sym_variable, + [169] = + alias_sym_boolean, + alias_sym_pattern_guard, + sym_let, + [172] = + sym__assoc_datainst, + sym__assoc_tyinst, + sym_data_instance, + sym_decl, + sym_type_instance, + [177] = + alias_sym_constructor, + sym__class_apply, + sym__class_infix, + sym__consym_prefix, + sym__ctr_parens, + sym__ctr_tuple, + sym__datacon_infix, + sym__datacon_unboxed_sum, + sym__exp_apply, + sym__exp_infix, + sym__exp_negation, + sym__exp_parens, + sym__exp_record, + sym__exp_tuple, + sym__exp_unboxed_sum, + sym__exp_unboxed_tuple, + sym__function_head_infix, + sym__pat_apply, + sym__pat_as, + sym__pat_infix, + sym__pat_irrefutable, + sym__pat_negation, + sym__pat_parens, + sym__pat_strict, + sym__pat_tuple, + sym__pat_unboxed_sum, + sym__pat_unboxed_tuple, + sym__qconsym_prefix, + sym__qfield_name, + sym__qtycon_arrow, + sym__qualified_arrow, + sym__qualified_constructor, + sym__qualified_consym, + sym__qualified_type, + sym__qualified_variable, + sym__qualified_varsym, + sym__qvarsym_prefix, + sym__tycon_arrow, + sym__type_apply, + sym__type_head_infix, + sym__type_head_parens, + sym__type_infix, + sym__type_instance_head_parens, + sym__type_list, + sym__type_param_parens, + sym__type_param_wildcard, + sym__type_parens, + sym__type_tuple, + sym__type_unboxed_sum, + sym__type_unboxed_tuple, + sym__varsym_prefix, + sym_literal, + sym_prefix_tuple, + sym_prefix_unboxed_sum, + sym_prefix_unboxed_tuple, + sym_quasiquote, + sym_splice, + sym_unboxed_unit, + sym_unit, + sym_variable, + [237] = + alias_sym_boolean, + sym_generator, + sym_group, + sym_let, + sym_transform, + [242] = + sym__ctr_context, + sym__ctr_forall, + sym__qtype_context, + sym__qtype_forall, + sym__qtype_forall_required, + sym__qtype_function, + sym__qtype_linear_function, + sym_context, + sym_forall, + sym_forall_required, + sym_function, + sym_implicit_parameter, + sym_type, + [255] = + sym__exp_statement, + sym_bind, + sym_let, + sym_rec, + [259] = + alias_sym_prefix_list, + sym__class_apply, + sym__class_infix, + sym__consym_prefix, + sym__ctr_parens, + sym__ctr_tuple, + sym__datacon_infix, + sym__datacon_unboxed_sum, + sym__exp_apply, + sym__exp_infix, + sym__exp_parens, + sym__exp_tuple, + sym__exp_unboxed_sum, + sym__exp_unboxed_tuple, + sym__function_head_infix, + sym__pat_apply, + sym__pat_infix, + sym__pat_parens, + sym__pat_tuple, + sym__pat_unboxed_sum, + sym__pat_unboxed_tuple, + sym__promoted_tyconops_alias, + sym__promoted_tycons_alias, + sym__qconsym_prefix, + sym__qfield_name, + sym__qtycon_arrow, + sym__qualified_arrow, + sym__qualified_constructor, + sym__qualified_consym, + sym__qualified_type, + sym__qualified_variable, + sym__qualified_varsym, + sym__qvarsym_prefix, + sym__tycon_arrow, + sym__type_apply, + sym__type_head_infix, + sym__type_head_parens, + sym__type_infix, + sym__type_instance_head_parens, + sym__type_list, + sym__type_param_parens, + sym__type_param_wildcard, + sym__type_parens, + sym__type_promoted, + sym__type_star, + sym__type_tuple, + sym__type_unboxed_sum, + sym__type_unboxed_tuple, + sym__varsym_prefix, + sym_literal, + sym_name, + sym_prefix_tuple, + sym_prefix_unboxed_sum, + sym_prefix_unboxed_tuple, + sym_quasiquote, + sym_splice, + sym_unboxed_unit, + sym_unit, + sym_variable, + [318] = + sym__ctr_parens, + sym__exp_parens, + sym__pat_parens, + sym__type_head_parens, + sym__type_instance_head_parens, + sym__type_param_invisible, + sym__type_param_parens, + sym__type_param_wildcard, + sym__type_parens, + sym_variable, +}; + +static const TSCharacterRange sym_variable_character_set_1[] = { {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xdf, 0xf6}, {0xf8, 0xff}, {0x101, 0x101}, {0x103, 0x103}, {0x105, 0x105}, {0x107, 0x107}, {0x109, 0x109}, {0x10b, 0x10b}, {0x10d, 0x10d}, {0x10f, 0x10f}, {0x111, 0x111}, {0x113, 0x113}, {0x115, 0x115}, {0x117, 0x117}, {0x119, 0x119}, {0x11b, 0x11b}, {0x11d, 0x11d}, {0x11f, 0x11f}, {0x121, 0x121}, @@ -19906,70 +20289,99 @@ static TSCharacterRange sym_variable_character_set_1[] = { {0x1700, 0x1711}, {0x171f, 0x1731}, {0x1740, 0x1751}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17dc, 0x17dc}, {0x1820, 0x1842}, {0x1844, 0x1878}, {0x1880, 0x1884}, {0x1887, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, - {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, {0x1c5a, 0x1c77}, {0x1c80, 0x1c88}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, - {0x1cfa, 0x1cfa}, {0x1d00, 0x1d2b}, {0x1d6b, 0x1d77}, {0x1d79, 0x1d9a}, {0x1e01, 0x1e01}, {0x1e03, 0x1e03}, {0x1e05, 0x1e05}, {0x1e07, 0x1e07}, - {0x1e09, 0x1e09}, {0x1e0b, 0x1e0b}, {0x1e0d, 0x1e0d}, {0x1e0f, 0x1e0f}, {0x1e11, 0x1e11}, {0x1e13, 0x1e13}, {0x1e15, 0x1e15}, {0x1e17, 0x1e17}, - {0x1e19, 0x1e19}, {0x1e1b, 0x1e1b}, {0x1e1d, 0x1e1d}, {0x1e1f, 0x1e1f}, {0x1e21, 0x1e21}, {0x1e23, 0x1e23}, {0x1e25, 0x1e25}, {0x1e27, 0x1e27}, - {0x1e29, 0x1e29}, {0x1e2b, 0x1e2b}, {0x1e2d, 0x1e2d}, {0x1e2f, 0x1e2f}, {0x1e31, 0x1e31}, {0x1e33, 0x1e33}, {0x1e35, 0x1e35}, {0x1e37, 0x1e37}, - {0x1e39, 0x1e39}, {0x1e3b, 0x1e3b}, {0x1e3d, 0x1e3d}, {0x1e3f, 0x1e3f}, {0x1e41, 0x1e41}, {0x1e43, 0x1e43}, {0x1e45, 0x1e45}, {0x1e47, 0x1e47}, - {0x1e49, 0x1e49}, {0x1e4b, 0x1e4b}, {0x1e4d, 0x1e4d}, {0x1e4f, 0x1e4f}, {0x1e51, 0x1e51}, {0x1e53, 0x1e53}, {0x1e55, 0x1e55}, {0x1e57, 0x1e57}, - {0x1e59, 0x1e59}, {0x1e5b, 0x1e5b}, {0x1e5d, 0x1e5d}, {0x1e5f, 0x1e5f}, {0x1e61, 0x1e61}, {0x1e63, 0x1e63}, {0x1e65, 0x1e65}, {0x1e67, 0x1e67}, - {0x1e69, 0x1e69}, {0x1e6b, 0x1e6b}, {0x1e6d, 0x1e6d}, {0x1e6f, 0x1e6f}, {0x1e71, 0x1e71}, {0x1e73, 0x1e73}, {0x1e75, 0x1e75}, {0x1e77, 0x1e77}, - {0x1e79, 0x1e79}, {0x1e7b, 0x1e7b}, {0x1e7d, 0x1e7d}, {0x1e7f, 0x1e7f}, {0x1e81, 0x1e81}, {0x1e83, 0x1e83}, {0x1e85, 0x1e85}, {0x1e87, 0x1e87}, - {0x1e89, 0x1e89}, {0x1e8b, 0x1e8b}, {0x1e8d, 0x1e8d}, {0x1e8f, 0x1e8f}, {0x1e91, 0x1e91}, {0x1e93, 0x1e93}, {0x1e95, 0x1e9d}, {0x1e9f, 0x1e9f}, - {0x1ea1, 0x1ea1}, {0x1ea3, 0x1ea3}, {0x1ea5, 0x1ea5}, {0x1ea7, 0x1ea7}, {0x1ea9, 0x1ea9}, {0x1eab, 0x1eab}, {0x1ead, 0x1ead}, {0x1eaf, 0x1eaf}, - {0x1eb1, 0x1eb1}, {0x1eb3, 0x1eb3}, {0x1eb5, 0x1eb5}, {0x1eb7, 0x1eb7}, {0x1eb9, 0x1eb9}, {0x1ebb, 0x1ebb}, {0x1ebd, 0x1ebd}, {0x1ebf, 0x1ebf}, - {0x1ec1, 0x1ec1}, {0x1ec3, 0x1ec3}, {0x1ec5, 0x1ec5}, {0x1ec7, 0x1ec7}, {0x1ec9, 0x1ec9}, {0x1ecb, 0x1ecb}, {0x1ecd, 0x1ecd}, {0x1ecf, 0x1ecf}, - {0x1ed1, 0x1ed1}, {0x1ed3, 0x1ed3}, {0x1ed5, 0x1ed5}, {0x1ed7, 0x1ed7}, {0x1ed9, 0x1ed9}, {0x1edb, 0x1edb}, {0x1edd, 0x1edd}, {0x1edf, 0x1edf}, - {0x1ee1, 0x1ee1}, {0x1ee3, 0x1ee3}, {0x1ee5, 0x1ee5}, {0x1ee7, 0x1ee7}, {0x1ee9, 0x1ee9}, {0x1eeb, 0x1eeb}, {0x1eed, 0x1eed}, {0x1eef, 0x1eef}, - {0x1ef1, 0x1ef1}, {0x1ef3, 0x1ef3}, {0x1ef5, 0x1ef5}, {0x1ef7, 0x1ef7}, {0x1ef9, 0x1ef9}, {0x1efb, 0x1efb}, {0x1efd, 0x1efd}, {0x1eff, 0x1f07}, - {0x1f10, 0x1f15}, {0x1f20, 0x1f27}, {0x1f30, 0x1f37}, {0x1f40, 0x1f45}, {0x1f50, 0x1f57}, {0x1f60, 0x1f67}, {0x1f70, 0x1f7d}, {0x1f80, 0x1f87}, - {0x1f90, 0x1f97}, {0x1fa0, 0x1fa7}, {0x1fb0, 0x1fb4}, {0x1fb6, 0x1fb7}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fc7}, {0x1fd0, 0x1fd3}, - {0x1fd6, 0x1fd7}, {0x1fe0, 0x1fe7}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ff7}, {0x210a, 0x210a}, {0x210e, 0x210f}, {0x2113, 0x2113}, {0x212f, 0x212f}, - {0x2134, 0x2139}, {0x213c, 0x213d}, {0x2146, 0x2149}, {0x214e, 0x214e}, {0x2184, 0x2184}, {0x2c30, 0x2c5f}, {0x2c61, 0x2c61}, {0x2c65, 0x2c66}, - {0x2c68, 0x2c68}, {0x2c6a, 0x2c6a}, {0x2c6c, 0x2c6c}, {0x2c71, 0x2c71}, {0x2c73, 0x2c74}, {0x2c76, 0x2c7b}, {0x2c81, 0x2c81}, {0x2c83, 0x2c83}, - {0x2c85, 0x2c85}, {0x2c87, 0x2c87}, {0x2c89, 0x2c89}, {0x2c8b, 0x2c8b}, {0x2c8d, 0x2c8d}, {0x2c8f, 0x2c8f}, {0x2c91, 0x2c91}, {0x2c93, 0x2c93}, - {0x2c95, 0x2c95}, {0x2c97, 0x2c97}, {0x2c99, 0x2c99}, {0x2c9b, 0x2c9b}, {0x2c9d, 0x2c9d}, {0x2c9f, 0x2c9f}, {0x2ca1, 0x2ca1}, {0x2ca3, 0x2ca3}, - {0x2ca5, 0x2ca5}, {0x2ca7, 0x2ca7}, {0x2ca9, 0x2ca9}, {0x2cab, 0x2cab}, {0x2cad, 0x2cad}, {0x2caf, 0x2caf}, {0x2cb1, 0x2cb1}, {0x2cb3, 0x2cb3}, - {0x2cb5, 0x2cb5}, {0x2cb7, 0x2cb7}, {0x2cb9, 0x2cb9}, {0x2cbb, 0x2cbb}, {0x2cbd, 0x2cbd}, {0x2cbf, 0x2cbf}, {0x2cc1, 0x2cc1}, {0x2cc3, 0x2cc3}, - {0x2cc5, 0x2cc5}, {0x2cc7, 0x2cc7}, {0x2cc9, 0x2cc9}, {0x2ccb, 0x2ccb}, {0x2ccd, 0x2ccd}, {0x2ccf, 0x2ccf}, {0x2cd1, 0x2cd1}, {0x2cd3, 0x2cd3}, - {0x2cd5, 0x2cd5}, {0x2cd7, 0x2cd7}, {0x2cd9, 0x2cd9}, {0x2cdb, 0x2cdb}, {0x2cdd, 0x2cdd}, {0x2cdf, 0x2cdf}, {0x2ce1, 0x2ce1}, {0x2ce3, 0x2ce4}, - {0x2cec, 0x2cec}, {0x2cee, 0x2cee}, {0x2cf3, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d80, 0x2d96}, - {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, - {0x3006, 0x3006}, {0x303c, 0x303c}, {0x3041, 0x3096}, {0x309f, 0x309f}, {0x30a1, 0x30fa}, {0x30ff, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, - {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x3400}, {0x4dbf, 0x4dbf}, {0x4e00, 0x4e00}, {0x9fff, 0xa014}, {0xa016, 0xa48c}, {0xa4d0, 0xa4f7}, - {0xa500, 0xa60b}, {0xa610, 0xa61f}, {0xa62a, 0xa62b}, {0xa641, 0xa641}, {0xa643, 0xa643}, {0xa645, 0xa645}, {0xa647, 0xa647}, {0xa649, 0xa649}, - {0xa64b, 0xa64b}, {0xa64d, 0xa64d}, {0xa64f, 0xa64f}, {0xa651, 0xa651}, {0xa653, 0xa653}, {0xa655, 0xa655}, {0xa657, 0xa657}, {0xa659, 0xa659}, - {0xa65b, 0xa65b}, {0xa65d, 0xa65d}, {0xa65f, 0xa65f}, {0xa661, 0xa661}, {0xa663, 0xa663}, {0xa665, 0xa665}, {0xa667, 0xa667}, {0xa669, 0xa669}, - {0xa66b, 0xa66b}, {0xa66d, 0xa66e}, {0xa681, 0xa681}, {0xa683, 0xa683}, {0xa685, 0xa685}, {0xa687, 0xa687}, {0xa689, 0xa689}, {0xa68b, 0xa68b}, - {0xa68d, 0xa68d}, {0xa68f, 0xa68f}, {0xa691, 0xa691}, {0xa693, 0xa693}, {0xa695, 0xa695}, {0xa697, 0xa697}, {0xa699, 0xa699}, {0xa69b, 0xa69b}, - {0xa6a0, 0xa6e5}, {0xa723, 0xa723}, {0xa725, 0xa725}, {0xa727, 0xa727}, {0xa729, 0xa729}, {0xa72b, 0xa72b}, {0xa72d, 0xa72d}, {0xa72f, 0xa731}, - {0xa733, 0xa733}, {0xa735, 0xa735}, {0xa737, 0xa737}, {0xa739, 0xa739}, {0xa73b, 0xa73b}, {0xa73d, 0xa73d}, {0xa73f, 0xa73f}, {0xa741, 0xa741}, - {0xa743, 0xa743}, {0xa745, 0xa745}, {0xa747, 0xa747}, {0xa749, 0xa749}, {0xa74b, 0xa74b}, {0xa74d, 0xa74d}, {0xa74f, 0xa74f}, {0xa751, 0xa751}, - {0xa753, 0xa753}, {0xa755, 0xa755}, {0xa757, 0xa757}, {0xa759, 0xa759}, {0xa75b, 0xa75b}, {0xa75d, 0xa75d}, {0xa75f, 0xa75f}, {0xa761, 0xa761}, - {0xa763, 0xa763}, {0xa765, 0xa765}, {0xa767, 0xa767}, {0xa769, 0xa769}, {0xa76b, 0xa76b}, {0xa76d, 0xa76d}, {0xa76f, 0xa76f}, {0xa771, 0xa778}, - {0xa77a, 0xa77a}, {0xa77c, 0xa77c}, {0xa77f, 0xa77f}, {0xa781, 0xa781}, {0xa783, 0xa783}, {0xa785, 0xa785}, {0xa787, 0xa787}, {0xa78c, 0xa78c}, - {0xa78e, 0xa78f}, {0xa791, 0xa791}, {0xa793, 0xa795}, {0xa797, 0xa797}, {0xa799, 0xa799}, {0xa79b, 0xa79b}, {0xa79d, 0xa79d}, {0xa79f, 0xa79f}, - {0xa7a1, 0xa7a1}, {0xa7a3, 0xa7a3}, {0xa7a5, 0xa7a5}, {0xa7a7, 0xa7a7}, {0xa7a9, 0xa7a9}, {0xa7af, 0xa7af}, {0xa7b5, 0xa7b5}, {0xa7b7, 0xa7b7}, - {0xa7b9, 0xa7b9}, {0xa7bb, 0xa7bb}, {0xa7bd, 0xa7bd}, {0xa7bf, 0xa7bf}, {0xa7c1, 0xa7c1}, {0xa7c3, 0xa7c3}, {0xa7c8, 0xa7c8}, {0xa7ca, 0xa7ca}, - {0xa7d1, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d5}, {0xa7d7, 0xa7d7}, {0xa7d9, 0xa7d9}, {0xa7f6, 0xa7f7}, {0xa7fa, 0xa801}, {0xa803, 0xa805}, - {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, - {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9e0, 0xa9e4}, {0xa9e7, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, - {0xaa44, 0xaa4b}, {0xaa60, 0xaa6f}, {0xaa71, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, - {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadc}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf2}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, - {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab60, 0xab68}, {0xab70, 0xabe2}, {0xac00, 0xac00}, {0xd7a3, 0xd7a3}, {0xd7b0, 0xd7c6}, + {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, {0x1c5a, 0x1c77}, {0x1c80, 0x1c88}, {0x1c8a, 0x1c8a}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, + {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1d2b}, {0x1d6b, 0x1d77}, {0x1d79, 0x1d9a}, {0x1e01, 0x1e01}, {0x1e03, 0x1e03}, {0x1e05, 0x1e05}, + {0x1e07, 0x1e07}, {0x1e09, 0x1e09}, {0x1e0b, 0x1e0b}, {0x1e0d, 0x1e0d}, {0x1e0f, 0x1e0f}, {0x1e11, 0x1e11}, {0x1e13, 0x1e13}, {0x1e15, 0x1e15}, + {0x1e17, 0x1e17}, {0x1e19, 0x1e19}, {0x1e1b, 0x1e1b}, {0x1e1d, 0x1e1d}, {0x1e1f, 0x1e1f}, {0x1e21, 0x1e21}, {0x1e23, 0x1e23}, {0x1e25, 0x1e25}, + {0x1e27, 0x1e27}, {0x1e29, 0x1e29}, {0x1e2b, 0x1e2b}, {0x1e2d, 0x1e2d}, {0x1e2f, 0x1e2f}, {0x1e31, 0x1e31}, {0x1e33, 0x1e33}, {0x1e35, 0x1e35}, + {0x1e37, 0x1e37}, {0x1e39, 0x1e39}, {0x1e3b, 0x1e3b}, {0x1e3d, 0x1e3d}, {0x1e3f, 0x1e3f}, {0x1e41, 0x1e41}, {0x1e43, 0x1e43}, {0x1e45, 0x1e45}, + {0x1e47, 0x1e47}, {0x1e49, 0x1e49}, {0x1e4b, 0x1e4b}, {0x1e4d, 0x1e4d}, {0x1e4f, 0x1e4f}, {0x1e51, 0x1e51}, {0x1e53, 0x1e53}, {0x1e55, 0x1e55}, + {0x1e57, 0x1e57}, {0x1e59, 0x1e59}, {0x1e5b, 0x1e5b}, {0x1e5d, 0x1e5d}, {0x1e5f, 0x1e5f}, {0x1e61, 0x1e61}, {0x1e63, 0x1e63}, {0x1e65, 0x1e65}, + {0x1e67, 0x1e67}, {0x1e69, 0x1e69}, {0x1e6b, 0x1e6b}, {0x1e6d, 0x1e6d}, {0x1e6f, 0x1e6f}, {0x1e71, 0x1e71}, {0x1e73, 0x1e73}, {0x1e75, 0x1e75}, + {0x1e77, 0x1e77}, {0x1e79, 0x1e79}, {0x1e7b, 0x1e7b}, {0x1e7d, 0x1e7d}, {0x1e7f, 0x1e7f}, {0x1e81, 0x1e81}, {0x1e83, 0x1e83}, {0x1e85, 0x1e85}, + {0x1e87, 0x1e87}, {0x1e89, 0x1e89}, {0x1e8b, 0x1e8b}, {0x1e8d, 0x1e8d}, {0x1e8f, 0x1e8f}, {0x1e91, 0x1e91}, {0x1e93, 0x1e93}, {0x1e95, 0x1e9d}, + {0x1e9f, 0x1e9f}, {0x1ea1, 0x1ea1}, {0x1ea3, 0x1ea3}, {0x1ea5, 0x1ea5}, {0x1ea7, 0x1ea7}, {0x1ea9, 0x1ea9}, {0x1eab, 0x1eab}, {0x1ead, 0x1ead}, + {0x1eaf, 0x1eaf}, {0x1eb1, 0x1eb1}, {0x1eb3, 0x1eb3}, {0x1eb5, 0x1eb5}, {0x1eb7, 0x1eb7}, {0x1eb9, 0x1eb9}, {0x1ebb, 0x1ebb}, {0x1ebd, 0x1ebd}, + {0x1ebf, 0x1ebf}, {0x1ec1, 0x1ec1}, {0x1ec3, 0x1ec3}, {0x1ec5, 0x1ec5}, {0x1ec7, 0x1ec7}, {0x1ec9, 0x1ec9}, {0x1ecb, 0x1ecb}, {0x1ecd, 0x1ecd}, + {0x1ecf, 0x1ecf}, {0x1ed1, 0x1ed1}, {0x1ed3, 0x1ed3}, {0x1ed5, 0x1ed5}, {0x1ed7, 0x1ed7}, {0x1ed9, 0x1ed9}, {0x1edb, 0x1edb}, {0x1edd, 0x1edd}, + {0x1edf, 0x1edf}, {0x1ee1, 0x1ee1}, {0x1ee3, 0x1ee3}, {0x1ee5, 0x1ee5}, {0x1ee7, 0x1ee7}, {0x1ee9, 0x1ee9}, {0x1eeb, 0x1eeb}, {0x1eed, 0x1eed}, + {0x1eef, 0x1eef}, {0x1ef1, 0x1ef1}, {0x1ef3, 0x1ef3}, {0x1ef5, 0x1ef5}, {0x1ef7, 0x1ef7}, {0x1ef9, 0x1ef9}, {0x1efb, 0x1efb}, {0x1efd, 0x1efd}, + {0x1eff, 0x1f07}, {0x1f10, 0x1f15}, {0x1f20, 0x1f27}, {0x1f30, 0x1f37}, {0x1f40, 0x1f45}, {0x1f50, 0x1f57}, {0x1f60, 0x1f67}, {0x1f70, 0x1f7d}, + {0x1f80, 0x1f87}, {0x1f90, 0x1f97}, {0x1fa0, 0x1fa7}, {0x1fb0, 0x1fb4}, {0x1fb6, 0x1fb7}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fc7}, + {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fd7}, {0x1fe0, 0x1fe7}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ff7}, {0x210a, 0x210a}, {0x210e, 0x210f}, {0x2113, 0x2113}, + {0x212f, 0x212f}, {0x2134, 0x2139}, {0x213c, 0x213d}, {0x2146, 0x2149}, {0x214e, 0x214e}, {0x2184, 0x2184}, {0x2c30, 0x2c5f}, {0x2c61, 0x2c61}, + {0x2c65, 0x2c66}, {0x2c68, 0x2c68}, {0x2c6a, 0x2c6a}, {0x2c6c, 0x2c6c}, {0x2c71, 0x2c71}, {0x2c73, 0x2c74}, {0x2c76, 0x2c7b}, {0x2c81, 0x2c81}, + {0x2c83, 0x2c83}, {0x2c85, 0x2c85}, {0x2c87, 0x2c87}, {0x2c89, 0x2c89}, {0x2c8b, 0x2c8b}, {0x2c8d, 0x2c8d}, {0x2c8f, 0x2c8f}, {0x2c91, 0x2c91}, + {0x2c93, 0x2c93}, {0x2c95, 0x2c95}, {0x2c97, 0x2c97}, {0x2c99, 0x2c99}, {0x2c9b, 0x2c9b}, {0x2c9d, 0x2c9d}, {0x2c9f, 0x2c9f}, {0x2ca1, 0x2ca1}, + {0x2ca3, 0x2ca3}, {0x2ca5, 0x2ca5}, {0x2ca7, 0x2ca7}, {0x2ca9, 0x2ca9}, {0x2cab, 0x2cab}, {0x2cad, 0x2cad}, {0x2caf, 0x2caf}, {0x2cb1, 0x2cb1}, + {0x2cb3, 0x2cb3}, {0x2cb5, 0x2cb5}, {0x2cb7, 0x2cb7}, {0x2cb9, 0x2cb9}, {0x2cbb, 0x2cbb}, {0x2cbd, 0x2cbd}, {0x2cbf, 0x2cbf}, {0x2cc1, 0x2cc1}, + {0x2cc3, 0x2cc3}, {0x2cc5, 0x2cc5}, {0x2cc7, 0x2cc7}, {0x2cc9, 0x2cc9}, {0x2ccb, 0x2ccb}, {0x2ccd, 0x2ccd}, {0x2ccf, 0x2ccf}, {0x2cd1, 0x2cd1}, + {0x2cd3, 0x2cd3}, {0x2cd5, 0x2cd5}, {0x2cd7, 0x2cd7}, {0x2cd9, 0x2cd9}, {0x2cdb, 0x2cdb}, {0x2cdd, 0x2cdd}, {0x2cdf, 0x2cdf}, {0x2ce1, 0x2ce1}, + {0x2ce3, 0x2ce4}, {0x2cec, 0x2cec}, {0x2cee, 0x2cee}, {0x2cf3, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, + {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, + {0x2dd8, 0x2dde}, {0x3006, 0x3006}, {0x303c, 0x303c}, {0x3041, 0x3096}, {0x309f, 0x309f}, {0x30a1, 0x30fa}, {0x30ff, 0x30ff}, {0x3105, 0x312f}, + {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa014}, {0xa016, 0xa48c}, {0xa4d0, 0xa4f7}, {0xa500, 0xa60b}, + {0xa610, 0xa61f}, {0xa62a, 0xa62b}, {0xa641, 0xa641}, {0xa643, 0xa643}, {0xa645, 0xa645}, {0xa647, 0xa647}, {0xa649, 0xa649}, {0xa64b, 0xa64b}, + {0xa64d, 0xa64d}, {0xa64f, 0xa64f}, {0xa651, 0xa651}, {0xa653, 0xa653}, {0xa655, 0xa655}, {0xa657, 0xa657}, {0xa659, 0xa659}, {0xa65b, 0xa65b}, + {0xa65d, 0xa65d}, {0xa65f, 0xa65f}, {0xa661, 0xa661}, {0xa663, 0xa663}, {0xa665, 0xa665}, {0xa667, 0xa667}, {0xa669, 0xa669}, {0xa66b, 0xa66b}, + {0xa66d, 0xa66e}, {0xa681, 0xa681}, {0xa683, 0xa683}, {0xa685, 0xa685}, {0xa687, 0xa687}, {0xa689, 0xa689}, {0xa68b, 0xa68b}, {0xa68d, 0xa68d}, + {0xa68f, 0xa68f}, {0xa691, 0xa691}, {0xa693, 0xa693}, {0xa695, 0xa695}, {0xa697, 0xa697}, {0xa699, 0xa699}, {0xa69b, 0xa69b}, {0xa6a0, 0xa6e5}, + {0xa723, 0xa723}, {0xa725, 0xa725}, {0xa727, 0xa727}, {0xa729, 0xa729}, {0xa72b, 0xa72b}, {0xa72d, 0xa72d}, {0xa72f, 0xa731}, {0xa733, 0xa733}, + {0xa735, 0xa735}, {0xa737, 0xa737}, {0xa739, 0xa739}, {0xa73b, 0xa73b}, {0xa73d, 0xa73d}, {0xa73f, 0xa73f}, {0xa741, 0xa741}, {0xa743, 0xa743}, + {0xa745, 0xa745}, {0xa747, 0xa747}, {0xa749, 0xa749}, {0xa74b, 0xa74b}, {0xa74d, 0xa74d}, {0xa74f, 0xa74f}, {0xa751, 0xa751}, {0xa753, 0xa753}, + {0xa755, 0xa755}, {0xa757, 0xa757}, {0xa759, 0xa759}, {0xa75b, 0xa75b}, {0xa75d, 0xa75d}, {0xa75f, 0xa75f}, {0xa761, 0xa761}, {0xa763, 0xa763}, + {0xa765, 0xa765}, {0xa767, 0xa767}, {0xa769, 0xa769}, {0xa76b, 0xa76b}, {0xa76d, 0xa76d}, {0xa76f, 0xa76f}, {0xa771, 0xa778}, {0xa77a, 0xa77a}, + {0xa77c, 0xa77c}, {0xa77f, 0xa77f}, {0xa781, 0xa781}, {0xa783, 0xa783}, {0xa785, 0xa785}, {0xa787, 0xa787}, {0xa78c, 0xa78c}, {0xa78e, 0xa78f}, + {0xa791, 0xa791}, {0xa793, 0xa795}, {0xa797, 0xa797}, {0xa799, 0xa799}, {0xa79b, 0xa79b}, {0xa79d, 0xa79d}, {0xa79f, 0xa79f}, {0xa7a1, 0xa7a1}, + {0xa7a3, 0xa7a3}, {0xa7a5, 0xa7a5}, {0xa7a7, 0xa7a7}, {0xa7a9, 0xa7a9}, {0xa7af, 0xa7af}, {0xa7b5, 0xa7b5}, {0xa7b7, 0xa7b7}, {0xa7b9, 0xa7b9}, + {0xa7bb, 0xa7bb}, {0xa7bd, 0xa7bd}, {0xa7bf, 0xa7bf}, {0xa7c1, 0xa7c1}, {0xa7c3, 0xa7c3}, {0xa7c8, 0xa7c8}, {0xa7ca, 0xa7ca}, {0xa7cd, 0xa7cd}, + {0xa7d1, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d5}, {0xa7d7, 0xa7d7}, {0xa7d9, 0xa7d9}, {0xa7db, 0xa7db}, {0xa7f6, 0xa7f7}, {0xa7fa, 0xa801}, + {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, + {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9e0, 0xa9e4}, {0xa9e7, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, + {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa6f}, {0xaa71, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, {0xaab5, 0xaab6}, + {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadc}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf2}, {0xab01, 0xab06}, {0xab09, 0xab0e}, + {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab60, 0xab68}, {0xab70, 0xabe2}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb1d}, {0xfb1f, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdfb}, {0xfe70, 0xfe74}, {0xfe76, 0xfefc}, {0xff41, 0xff5a}, {0xff66, 0xff6f}, {0xff71, 0xff9d}, {0xffa0, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x10340}, {0x10342, 0x10349}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x10428, 0x1049d}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10597, 0x105a1}, - {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10800, 0x10805}, {0x10808, 0x10808}, - {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, - {0x10900, 0x10915}, + {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10800, 0x10805}, + {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, + {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, + {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, + {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10d4a, 0x10d4d}, {0x10d4f, 0x10d4f}, {0x10d70, 0x10d85}, {0x10e80, 0x10ea9}, + {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, + {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, + {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, + {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, + {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, + {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, {0x11400, 0x11434}, + {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, + {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118c0, 0x118df}, {0x118ff, 0x11906}, + {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, + {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, + {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, + {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, + {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, + {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, + {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d43, 0x16d6a}, {0x16e60, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, + {0x18cff, 0x18d08}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, + {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d41a, 0x1d433}, {0x1d44e, 0x1d454}, {0x1d456, 0x1d467}, {0x1d482, 0x1d49b}, {0x1d4b6, 0x1d4b9}, + {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d4cf}, {0x1d4ea, 0x1d503}, {0x1d51e, 0x1d537}, {0x1d552, 0x1d56b}, {0x1d586, 0x1d59f}, {0x1d5ba, 0x1d5d3}, + {0x1d5ee, 0x1d607}, {0x1d622, 0x1d63b}, {0x1d656, 0x1d66f}, {0x1d68a, 0x1d6a5}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6e1}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d71b}, + {0x1d736, 0x1d74e}, {0x1d750, 0x1d755}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d78f}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7c9}, {0x1d7cb, 0x1d7cb}, {0x1df00, 0x1df1e}, + {0x1df25, 0x1df2a}, {0x1e100, 0x1e12c}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4ea}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5f0}, + {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e922, 0x1e943}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, + {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, + {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, + {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, + {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, + {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, }; -static TSCharacterRange sym_implicit_variable_character_set_1[] = { +static const TSCharacterRange sym_implicit_variable_character_set_1[] = { {'\'', '\''}, {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb2, 0xb3}, {0xb5, 0xb5}, {0xb9, 0xba}, {0xbc, 0xbe}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x300, 0x374}, {0x376, 0x377}, {0x37a, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, @@ -19977,7 +20389,7 @@ static TSCharacterRange sym_implicit_variable_character_set_1[] = { {0x591, 0x5bd}, {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, {0x66e, 0x6d3}, {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, - {0x898, 0x8e1}, {0x8e3, 0x902}, {0x904, 0x93a}, {0x93c, 0x93d}, {0x941, 0x948}, {0x94d, 0x94d}, {0x950, 0x963}, {0x966, 0x96f}, + {0x897, 0x8e1}, {0x8e3, 0x902}, {0x904, 0x93a}, {0x93c, 0x93d}, {0x941, 0x948}, {0x94d, 0x94d}, {0x950, 0x963}, {0x966, 0x96f}, {0x971, 0x981}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9bd}, {0x9c1, 0x9c4}, {0x9cd, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, {0x9f4, 0x9f9}, {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, {0xa01, 0xa02}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, @@ -20010,7 +20422,7 @@ static TSCharacterRange sym_implicit_variable_character_set_1[] = { {0x1a73, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b03}, {0x1b05, 0x1b34}, {0x1b36, 0x1b3a}, {0x1b3c, 0x1b3c}, {0x1b42, 0x1b42}, {0x1b45, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, {0x1b80, 0x1b81}, {0x1b83, 0x1ba0}, {0x1ba2, 0x1ba5}, {0x1ba8, 0x1ba9}, {0x1bab, 0x1be6}, {0x1be8, 0x1be9}, {0x1bed, 0x1bed}, {0x1bef, 0x1bf1}, {0x1c00, 0x1c23}, {0x1c2c, 0x1c33}, - {0x1c36, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1ce0}, + {0x1c36, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1ce0}, {0x1ce2, 0x1cf6}, {0x1cf8, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2070, 0x2071}, {0x2074, 0x2079}, {0x207f, 0x2089}, @@ -20021,28 +20433,74 @@ static TSCharacterRange sym_implicit_variable_character_set_1[] = { {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x2e2f, 0x2e2f}, {0x3005, 0x3007}, {0x3021, 0x302d}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x3192, 0x3195}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3220, 0x3229}, {0x3248, 0x324f}, - {0x3251, 0x325f}, {0x3280, 0x3289}, {0x32b1, 0x32bf}, {0x3400, 0x3400}, {0x4dbf, 0x4dbf}, {0x4e00, 0x4e00}, {0x9fff, 0xa48c}, {0xa4d0, 0xa4fd}, - {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, - {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa822}, {0xa825, 0xa826}, {0xa82c, 0xa82c}, {0xa830, 0xa835}, {0xa840, 0xa873}, - {0xa882, 0xa8b3}, {0xa8c4, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa951}, {0xa960, 0xa97c}, - {0xa980, 0xa982}, {0xa984, 0xa9b3}, {0xa9b6, 0xa9b9}, {0xa9bc, 0xa9bd}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa2e}, {0xaa31, 0xaa32}, - {0xaa35, 0xaa36}, {0xaa40, 0xaa4c}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7c, 0xaa7c}, {0xaa7e, 0xaac2}, {0xaadb, 0xaadd}, - {0xaae0, 0xaaea}, {0xaaec, 0xaaed}, {0xaaf2, 0xaaf4}, {0xaaf6, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, - {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabe2}, {0xabe5, 0xabe5}, {0xabe8, 0xabe8}, {0xabed, 0xabed}, {0xabf0, 0xabf9}, - {0xac00, 0xac00}, {0xd7a3, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, - {0xfb1d, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfd3d}, - {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdfb}, {0xfe00, 0xfe0f}, {0xfe20, 0xfe2f}, {0xfe70, 0xfe74}, {0xfe76, 0xfefc}, {0xff10, 0xff19}, - {0xff21, 0xff3a}, {0xff41, 0xff5a}, {0xff66, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, - {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10107, 0x10133}, {0x10140, 0x10178}, - {0x1018a, 0x1018b}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102fb}, {0x10300, 0x10323}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, - {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, - {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, - {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, - {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10858, 0x10876}, {0x10879, 0x1089e}, - {0x108a7, 0x108af}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x108fb, 0x1091b}, + {0x3251, 0x325f}, {0x3280, 0x3289}, {0x32b1, 0x32bf}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, + {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, + {0xa7d5, 0xa7dc}, {0xa7f2, 0xa822}, {0xa825, 0xa826}, {0xa82c, 0xa82c}, {0xa830, 0xa835}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8c4, 0xa8c5}, + {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa951}, {0xa960, 0xa97c}, {0xa980, 0xa982}, {0xa984, 0xa9b3}, + {0xa9b6, 0xa9b9}, {0xa9bc, 0xa9bd}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa2e}, {0xaa31, 0xaa32}, {0xaa35, 0xaa36}, {0xaa40, 0xaa4c}, + {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7c, 0xaa7c}, {0xaa7e, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, {0xaaec, 0xaaed}, + {0xaaf2, 0xaaf4}, {0xaaf6, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, + {0xab5c, 0xab69}, {0xab70, 0xabe2}, {0xabe5, 0xabe5}, {0xabe8, 0xabe8}, {0xabed, 0xabed}, {0xabf0, 0xabf9}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, + {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, + {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdfb}, + {0xfe00, 0xfe0f}, {0xfe20, 0xfe2f}, {0xfe70, 0xfe74}, {0xfe76, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff41, 0xff5a}, {0xff66, 0xffbe}, + {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, + {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10107, 0x10133}, {0x10140, 0x10178}, {0x1018a, 0x1018b}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, + {0x102a0, 0x102d0}, {0x102e0, 0x102fb}, {0x10300, 0x10323}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, + {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, + {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, + {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, + {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10858, 0x10876}, {0x10879, 0x1089e}, {0x108a7, 0x108af}, {0x108e0, 0x108f2}, + {0x108f4, 0x108f5}, {0x108fb, 0x1091b}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109bc, 0x109cf}, {0x109d2, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, + {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a48}, {0x10a60, 0x10a7e}, {0x10a80, 0x10a9f}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, + {0x10aeb, 0x10aef}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b58, 0x10b72}, {0x10b78, 0x10b91}, {0x10ba9, 0x10baf}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, + {0x10cc0, 0x10cf2}, {0x10cfa, 0x10d27}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, {0x10d69, 0x10d6d}, {0x10d6f, 0x10d85}, {0x10e60, 0x10e7e}, {0x10e80, 0x10ea9}, + {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10efc, 0x10f27}, {0x10f30, 0x10f54}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fcb}, {0x10fe0, 0x10ff6}, + {0x11001, 0x11001}, {0x11003, 0x11046}, {0x11052, 0x11075}, {0x1107f, 0x11081}, {0x11083, 0x110af}, {0x110b3, 0x110b6}, {0x110b9, 0x110ba}, {0x110c2, 0x110c2}, + {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x1112b}, {0x1112d, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11173}, + {0x11176, 0x11176}, {0x11180, 0x11181}, {0x11183, 0x111b2}, {0x111b6, 0x111be}, {0x111c1, 0x111c4}, {0x111c9, 0x111cc}, {0x111cf, 0x111da}, {0x111dc, 0x111dc}, + {0x111e1, 0x111f4}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1122f, 0x11231}, {0x11234, 0x11234}, {0x11236, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, + {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112df}, {0x112e3, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11301}, + {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x1133d}, {0x11340, 0x11340}, + {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, + {0x113b7, 0x113b7}, {0x113bb, 0x113c0}, {0x113ce, 0x113ce}, {0x113d0, 0x113d3}, {0x113e1, 0x113e2}, {0x11400, 0x11434}, {0x11438, 0x1143f}, {0x11442, 0x11444}, + {0x11446, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114af}, {0x114b3, 0x114b8}, {0x114ba, 0x114ba}, {0x114bf, 0x114c0}, {0x114c2, 0x114c5}, + {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115ae}, {0x115b2, 0x115b5}, {0x115bc, 0x115bd}, {0x115bf, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x1162f}, + {0x11633, 0x1163a}, {0x1163d, 0x1163d}, {0x1163f, 0x11640}, {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116ab}, {0x116ad, 0x116ad}, {0x116b0, 0x116b5}, + {0x116b7, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x1171d, 0x1171d}, {0x1171f, 0x1171f}, {0x11722, 0x11725}, {0x11727, 0x1172b}, + {0x11730, 0x1173b}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x1182f, 0x11837}, {0x11839, 0x1183a}, {0x118a0, 0x118f2}, {0x118ff, 0x11906}, {0x11909, 0x11909}, + {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193b, 0x1193c}, {0x1193e, 0x1193f}, {0x11941, 0x11941}, {0x11943, 0x11943}, {0x11950, 0x11959}, + {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119d4, 0x119d7}, {0x119da, 0x119db}, {0x119e0, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a38}, {0x11a3a, 0x11a3e}, + {0x11a47, 0x11a47}, {0x11a50, 0x11a56}, {0x11a59, 0x11a96}, {0x11a98, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, + {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c30, 0x11c36}, {0x11c38, 0x11c3d}, {0x11c3f, 0x11c40}, {0x11c50, 0x11c6c}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, + {0x11caa, 0x11cb0}, {0x11cb2, 0x11cb3}, {0x11cb5, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, + {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d90, 0x11d91}, {0x11d95, 0x11d95}, {0x11d97, 0x11d98}, + {0x11da0, 0x11da9}, {0x11ee0, 0x11ef4}, {0x11f00, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11f36, 0x11f3a}, {0x11f40, 0x11f40}, {0x11f42, 0x11f42}, + {0x11f50, 0x11f5a}, {0x11fb0, 0x11fb0}, {0x11fc0, 0x11fd4}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, + {0x13440, 0x13455}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x16129}, {0x1612d, 0x16139}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, + {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b5b, 0x16b61}, + {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e96}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f50}, {0x16f8f, 0x16f9f}, + {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, + {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, + {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1ccf0, 0x1ccf9}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d167, 0x1d169}, {0x1d17b, 0x1d182}, + {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d2c0, 0x1d2d3}, {0x1d2e0, 0x1d2f3}, {0x1d360, 0x1d378}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, + {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, + {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, + {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, + {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, + {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, + {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, + {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e5d0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, + {0x1e800, 0x1e8c4}, {0x1e8c7, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ec71, 0x1ecab}, {0x1ecad, 0x1ecaf}, {0x1ecb1, 0x1ecb4}, {0x1ed01, 0x1ed2d}, + {0x1ed2f, 0x1ed3d}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, + {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, + {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, + {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, + {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1f100, 0x1f10c}, {0x1fbf0, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, + {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, {0xe0100, 0xe01ef}, }; -static TSCharacterRange sym_name_character_set_1[] = { +static const TSCharacterRange sym_name_character_set_1[] = { {'A', 'Z'}, {0xc0, 0xd6}, {0xd8, 0xde}, {0x100, 0x100}, {0x102, 0x102}, {0x104, 0x104}, {0x106, 0x106}, {0x108, 0x108}, {0x10a, 0x10a}, {0x10c, 0x10c}, {0x10e, 0x10e}, {0x110, 0x110}, {0x112, 0x112}, {0x114, 0x114}, {0x116, 0x116}, {0x118, 0x118}, {0x11a, 0x11a}, {0x11c, 0x11c}, {0x11e, 0x11e}, {0x120, 0x120}, {0x122, 0x122}, {0x124, 0x124}, {0x126, 0x126}, {0x128, 0x128}, @@ -20077,49 +20535,54 @@ static TSCharacterRange sym_name_character_set_1[] = { {0x502, 0x502}, {0x504, 0x504}, {0x506, 0x506}, {0x508, 0x508}, {0x50a, 0x50a}, {0x50c, 0x50c}, {0x50e, 0x50e}, {0x510, 0x510}, {0x512, 0x512}, {0x514, 0x514}, {0x516, 0x516}, {0x518, 0x518}, {0x51a, 0x51a}, {0x51c, 0x51c}, {0x51e, 0x51e}, {0x520, 0x520}, {0x522, 0x522}, {0x524, 0x524}, {0x526, 0x526}, {0x528, 0x528}, {0x52a, 0x52a}, {0x52c, 0x52c}, {0x52e, 0x52e}, {0x531, 0x556}, - {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x13a0, 0x13f5}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1e00, 0x1e00}, {0x1e02, 0x1e02}, - {0x1e04, 0x1e04}, {0x1e06, 0x1e06}, {0x1e08, 0x1e08}, {0x1e0a, 0x1e0a}, {0x1e0c, 0x1e0c}, {0x1e0e, 0x1e0e}, {0x1e10, 0x1e10}, {0x1e12, 0x1e12}, - {0x1e14, 0x1e14}, {0x1e16, 0x1e16}, {0x1e18, 0x1e18}, {0x1e1a, 0x1e1a}, {0x1e1c, 0x1e1c}, {0x1e1e, 0x1e1e}, {0x1e20, 0x1e20}, {0x1e22, 0x1e22}, - {0x1e24, 0x1e24}, {0x1e26, 0x1e26}, {0x1e28, 0x1e28}, {0x1e2a, 0x1e2a}, {0x1e2c, 0x1e2c}, {0x1e2e, 0x1e2e}, {0x1e30, 0x1e30}, {0x1e32, 0x1e32}, - {0x1e34, 0x1e34}, {0x1e36, 0x1e36}, {0x1e38, 0x1e38}, {0x1e3a, 0x1e3a}, {0x1e3c, 0x1e3c}, {0x1e3e, 0x1e3e}, {0x1e40, 0x1e40}, {0x1e42, 0x1e42}, - {0x1e44, 0x1e44}, {0x1e46, 0x1e46}, {0x1e48, 0x1e48}, {0x1e4a, 0x1e4a}, {0x1e4c, 0x1e4c}, {0x1e4e, 0x1e4e}, {0x1e50, 0x1e50}, {0x1e52, 0x1e52}, - {0x1e54, 0x1e54}, {0x1e56, 0x1e56}, {0x1e58, 0x1e58}, {0x1e5a, 0x1e5a}, {0x1e5c, 0x1e5c}, {0x1e5e, 0x1e5e}, {0x1e60, 0x1e60}, {0x1e62, 0x1e62}, - {0x1e64, 0x1e64}, {0x1e66, 0x1e66}, {0x1e68, 0x1e68}, {0x1e6a, 0x1e6a}, {0x1e6c, 0x1e6c}, {0x1e6e, 0x1e6e}, {0x1e70, 0x1e70}, {0x1e72, 0x1e72}, - {0x1e74, 0x1e74}, {0x1e76, 0x1e76}, {0x1e78, 0x1e78}, {0x1e7a, 0x1e7a}, {0x1e7c, 0x1e7c}, {0x1e7e, 0x1e7e}, {0x1e80, 0x1e80}, {0x1e82, 0x1e82}, - {0x1e84, 0x1e84}, {0x1e86, 0x1e86}, {0x1e88, 0x1e88}, {0x1e8a, 0x1e8a}, {0x1e8c, 0x1e8c}, {0x1e8e, 0x1e8e}, {0x1e90, 0x1e90}, {0x1e92, 0x1e92}, - {0x1e94, 0x1e94}, {0x1e9e, 0x1e9e}, {0x1ea0, 0x1ea0}, {0x1ea2, 0x1ea2}, {0x1ea4, 0x1ea4}, {0x1ea6, 0x1ea6}, {0x1ea8, 0x1ea8}, {0x1eaa, 0x1eaa}, - {0x1eac, 0x1eac}, {0x1eae, 0x1eae}, {0x1eb0, 0x1eb0}, {0x1eb2, 0x1eb2}, {0x1eb4, 0x1eb4}, {0x1eb6, 0x1eb6}, {0x1eb8, 0x1eb8}, {0x1eba, 0x1eba}, - {0x1ebc, 0x1ebc}, {0x1ebe, 0x1ebe}, {0x1ec0, 0x1ec0}, {0x1ec2, 0x1ec2}, {0x1ec4, 0x1ec4}, {0x1ec6, 0x1ec6}, {0x1ec8, 0x1ec8}, {0x1eca, 0x1eca}, - {0x1ecc, 0x1ecc}, {0x1ece, 0x1ece}, {0x1ed0, 0x1ed0}, {0x1ed2, 0x1ed2}, {0x1ed4, 0x1ed4}, {0x1ed6, 0x1ed6}, {0x1ed8, 0x1ed8}, {0x1eda, 0x1eda}, - {0x1edc, 0x1edc}, {0x1ede, 0x1ede}, {0x1ee0, 0x1ee0}, {0x1ee2, 0x1ee2}, {0x1ee4, 0x1ee4}, {0x1ee6, 0x1ee6}, {0x1ee8, 0x1ee8}, {0x1eea, 0x1eea}, - {0x1eec, 0x1eec}, {0x1eee, 0x1eee}, {0x1ef0, 0x1ef0}, {0x1ef2, 0x1ef2}, {0x1ef4, 0x1ef4}, {0x1ef6, 0x1ef6}, {0x1ef8, 0x1ef8}, {0x1efa, 0x1efa}, - {0x1efc, 0x1efc}, {0x1efe, 0x1efe}, {0x1f08, 0x1f0f}, {0x1f18, 0x1f1d}, {0x1f28, 0x1f2f}, {0x1f38, 0x1f3f}, {0x1f48, 0x1f4d}, {0x1f59, 0x1f59}, - {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f5f}, {0x1f68, 0x1f6f}, {0x1f88, 0x1f8f}, {0x1f98, 0x1f9f}, {0x1fa8, 0x1faf}, {0x1fb8, 0x1fbc}, - {0x1fc8, 0x1fcc}, {0x1fd8, 0x1fdb}, {0x1fe8, 0x1fec}, {0x1ff8, 0x1ffc}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210b, 0x210d}, {0x2110, 0x2112}, - {0x2115, 0x2115}, {0x2119, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x212d}, {0x2130, 0x2133}, {0x213e, 0x213f}, - {0x2145, 0x2145}, {0x2183, 0x2183}, {0x2c00, 0x2c2f}, {0x2c60, 0x2c60}, {0x2c62, 0x2c64}, {0x2c67, 0x2c67}, {0x2c69, 0x2c69}, {0x2c6b, 0x2c6b}, - {0x2c6d, 0x2c70}, {0x2c72, 0x2c72}, {0x2c75, 0x2c75}, {0x2c7e, 0x2c80}, {0x2c82, 0x2c82}, {0x2c84, 0x2c84}, {0x2c86, 0x2c86}, {0x2c88, 0x2c88}, - {0x2c8a, 0x2c8a}, {0x2c8c, 0x2c8c}, {0x2c8e, 0x2c8e}, {0x2c90, 0x2c90}, {0x2c92, 0x2c92}, {0x2c94, 0x2c94}, {0x2c96, 0x2c96}, {0x2c98, 0x2c98}, - {0x2c9a, 0x2c9a}, {0x2c9c, 0x2c9c}, {0x2c9e, 0x2c9e}, {0x2ca0, 0x2ca0}, {0x2ca2, 0x2ca2}, {0x2ca4, 0x2ca4}, {0x2ca6, 0x2ca6}, {0x2ca8, 0x2ca8}, - {0x2caa, 0x2caa}, {0x2cac, 0x2cac}, {0x2cae, 0x2cae}, {0x2cb0, 0x2cb0}, {0x2cb2, 0x2cb2}, {0x2cb4, 0x2cb4}, {0x2cb6, 0x2cb6}, {0x2cb8, 0x2cb8}, - {0x2cba, 0x2cba}, {0x2cbc, 0x2cbc}, {0x2cbe, 0x2cbe}, {0x2cc0, 0x2cc0}, {0x2cc2, 0x2cc2}, {0x2cc4, 0x2cc4}, {0x2cc6, 0x2cc6}, {0x2cc8, 0x2cc8}, - {0x2cca, 0x2cca}, {0x2ccc, 0x2ccc}, {0x2cce, 0x2cce}, {0x2cd0, 0x2cd0}, {0x2cd2, 0x2cd2}, {0x2cd4, 0x2cd4}, {0x2cd6, 0x2cd6}, {0x2cd8, 0x2cd8}, - {0x2cda, 0x2cda}, {0x2cdc, 0x2cdc}, {0x2cde, 0x2cde}, {0x2ce0, 0x2ce0}, {0x2ce2, 0x2ce2}, {0x2ceb, 0x2ceb}, {0x2ced, 0x2ced}, {0x2cf2, 0x2cf2}, - {0xa640, 0xa640}, {0xa642, 0xa642}, {0xa644, 0xa644}, {0xa646, 0xa646}, {0xa648, 0xa648}, {0xa64a, 0xa64a}, {0xa64c, 0xa64c}, {0xa64e, 0xa64e}, - {0xa650, 0xa650}, {0xa652, 0xa652}, {0xa654, 0xa654}, {0xa656, 0xa656}, {0xa658, 0xa658}, {0xa65a, 0xa65a}, {0xa65c, 0xa65c}, {0xa65e, 0xa65e}, - {0xa660, 0xa660}, {0xa662, 0xa662}, {0xa664, 0xa664}, {0xa666, 0xa666}, {0xa668, 0xa668}, {0xa66a, 0xa66a}, {0xa66c, 0xa66c}, {0xa680, 0xa680}, - {0xa682, 0xa682}, {0xa684, 0xa684}, {0xa686, 0xa686}, {0xa688, 0xa688}, {0xa68a, 0xa68a}, {0xa68c, 0xa68c}, {0xa68e, 0xa68e}, {0xa690, 0xa690}, - {0xa692, 0xa692}, {0xa694, 0xa694}, {0xa696, 0xa696}, {0xa698, 0xa698}, {0xa69a, 0xa69a}, {0xa722, 0xa722}, {0xa724, 0xa724}, {0xa726, 0xa726}, - {0xa728, 0xa728}, {0xa72a, 0xa72a}, {0xa72c, 0xa72c}, {0xa72e, 0xa72e}, {0xa732, 0xa732}, {0xa734, 0xa734}, {0xa736, 0xa736}, {0xa738, 0xa738}, - {0xa73a, 0xa73a}, {0xa73c, 0xa73c}, {0xa73e, 0xa73e}, {0xa740, 0xa740}, {0xa742, 0xa742}, {0xa744, 0xa744}, {0xa746, 0xa746}, {0xa748, 0xa748}, - {0xa74a, 0xa74a}, {0xa74c, 0xa74c}, {0xa74e, 0xa74e}, {0xa750, 0xa750}, {0xa752, 0xa752}, {0xa754, 0xa754}, {0xa756, 0xa756}, {0xa758, 0xa758}, - {0xa75a, 0xa75a}, {0xa75c, 0xa75c}, {0xa75e, 0xa75e}, {0xa760, 0xa760}, {0xa762, 0xa762}, {0xa764, 0xa764}, {0xa766, 0xa766}, {0xa768, 0xa768}, - {0xa76a, 0xa76a}, {0xa76c, 0xa76c}, {0xa76e, 0xa76e}, {0xa779, 0xa779}, {0xa77b, 0xa77b}, {0xa77d, 0xa77e}, {0xa780, 0xa780}, {0xa782, 0xa782}, - {0xa784, 0xa784}, {0xa786, 0xa786}, {0xa78b, 0xa78b}, {0xa78d, 0xa78d}, {0xa790, 0xa790}, {0xa792, 0xa792}, {0xa796, 0xa796}, {0xa798, 0xa798}, - {0xa79a, 0xa79a}, {0xa79c, 0xa79c}, {0xa79e, 0xa79e}, {0xa7a0, 0xa7a0}, {0xa7a2, 0xa7a2}, {0xa7a4, 0xa7a4}, {0xa7a6, 0xa7a6}, {0xa7a8, 0xa7a8}, - {0xa7aa, 0xa7ae}, {0xa7b0, 0xa7b4}, {0xa7b6, 0xa7b6}, {0xa7b8, 0xa7b8}, {0xa7ba, 0xa7ba}, {0xa7bc, 0xa7bc}, {0xa7be, 0xa7be}, {0xa7c0, 0xa7c0}, - {0xa7c2, 0xa7c2}, {0xa7c4, 0xa7c7}, {0xa7c9, 0xa7c9}, {0xa7d0, 0xa7d0}, {0xa7d6, 0xa7d6}, {0xa7d8, 0xa7d8}, {0xa7f5, 0xa7f5}, {0xff21, 0xff3a}, - {0x10400, 0x10427}, {0x104b0, 0x104d3}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, + {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x13a0, 0x13f5}, {0x1c89, 0x1c89}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1e00, 0x1e00}, + {0x1e02, 0x1e02}, {0x1e04, 0x1e04}, {0x1e06, 0x1e06}, {0x1e08, 0x1e08}, {0x1e0a, 0x1e0a}, {0x1e0c, 0x1e0c}, {0x1e0e, 0x1e0e}, {0x1e10, 0x1e10}, + {0x1e12, 0x1e12}, {0x1e14, 0x1e14}, {0x1e16, 0x1e16}, {0x1e18, 0x1e18}, {0x1e1a, 0x1e1a}, {0x1e1c, 0x1e1c}, {0x1e1e, 0x1e1e}, {0x1e20, 0x1e20}, + {0x1e22, 0x1e22}, {0x1e24, 0x1e24}, {0x1e26, 0x1e26}, {0x1e28, 0x1e28}, {0x1e2a, 0x1e2a}, {0x1e2c, 0x1e2c}, {0x1e2e, 0x1e2e}, {0x1e30, 0x1e30}, + {0x1e32, 0x1e32}, {0x1e34, 0x1e34}, {0x1e36, 0x1e36}, {0x1e38, 0x1e38}, {0x1e3a, 0x1e3a}, {0x1e3c, 0x1e3c}, {0x1e3e, 0x1e3e}, {0x1e40, 0x1e40}, + {0x1e42, 0x1e42}, {0x1e44, 0x1e44}, {0x1e46, 0x1e46}, {0x1e48, 0x1e48}, {0x1e4a, 0x1e4a}, {0x1e4c, 0x1e4c}, {0x1e4e, 0x1e4e}, {0x1e50, 0x1e50}, + {0x1e52, 0x1e52}, {0x1e54, 0x1e54}, {0x1e56, 0x1e56}, {0x1e58, 0x1e58}, {0x1e5a, 0x1e5a}, {0x1e5c, 0x1e5c}, {0x1e5e, 0x1e5e}, {0x1e60, 0x1e60}, + {0x1e62, 0x1e62}, {0x1e64, 0x1e64}, {0x1e66, 0x1e66}, {0x1e68, 0x1e68}, {0x1e6a, 0x1e6a}, {0x1e6c, 0x1e6c}, {0x1e6e, 0x1e6e}, {0x1e70, 0x1e70}, + {0x1e72, 0x1e72}, {0x1e74, 0x1e74}, {0x1e76, 0x1e76}, {0x1e78, 0x1e78}, {0x1e7a, 0x1e7a}, {0x1e7c, 0x1e7c}, {0x1e7e, 0x1e7e}, {0x1e80, 0x1e80}, + {0x1e82, 0x1e82}, {0x1e84, 0x1e84}, {0x1e86, 0x1e86}, {0x1e88, 0x1e88}, {0x1e8a, 0x1e8a}, {0x1e8c, 0x1e8c}, {0x1e8e, 0x1e8e}, {0x1e90, 0x1e90}, + {0x1e92, 0x1e92}, {0x1e94, 0x1e94}, {0x1e9e, 0x1e9e}, {0x1ea0, 0x1ea0}, {0x1ea2, 0x1ea2}, {0x1ea4, 0x1ea4}, {0x1ea6, 0x1ea6}, {0x1ea8, 0x1ea8}, + {0x1eaa, 0x1eaa}, {0x1eac, 0x1eac}, {0x1eae, 0x1eae}, {0x1eb0, 0x1eb0}, {0x1eb2, 0x1eb2}, {0x1eb4, 0x1eb4}, {0x1eb6, 0x1eb6}, {0x1eb8, 0x1eb8}, + {0x1eba, 0x1eba}, {0x1ebc, 0x1ebc}, {0x1ebe, 0x1ebe}, {0x1ec0, 0x1ec0}, {0x1ec2, 0x1ec2}, {0x1ec4, 0x1ec4}, {0x1ec6, 0x1ec6}, {0x1ec8, 0x1ec8}, + {0x1eca, 0x1eca}, {0x1ecc, 0x1ecc}, {0x1ece, 0x1ece}, {0x1ed0, 0x1ed0}, {0x1ed2, 0x1ed2}, {0x1ed4, 0x1ed4}, {0x1ed6, 0x1ed6}, {0x1ed8, 0x1ed8}, + {0x1eda, 0x1eda}, {0x1edc, 0x1edc}, {0x1ede, 0x1ede}, {0x1ee0, 0x1ee0}, {0x1ee2, 0x1ee2}, {0x1ee4, 0x1ee4}, {0x1ee6, 0x1ee6}, {0x1ee8, 0x1ee8}, + {0x1eea, 0x1eea}, {0x1eec, 0x1eec}, {0x1eee, 0x1eee}, {0x1ef0, 0x1ef0}, {0x1ef2, 0x1ef2}, {0x1ef4, 0x1ef4}, {0x1ef6, 0x1ef6}, {0x1ef8, 0x1ef8}, + {0x1efa, 0x1efa}, {0x1efc, 0x1efc}, {0x1efe, 0x1efe}, {0x1f08, 0x1f0f}, {0x1f18, 0x1f1d}, {0x1f28, 0x1f2f}, {0x1f38, 0x1f3f}, {0x1f48, 0x1f4d}, + {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f5f}, {0x1f68, 0x1f6f}, {0x1f88, 0x1f8f}, {0x1f98, 0x1f9f}, {0x1fa8, 0x1faf}, + {0x1fb8, 0x1fbc}, {0x1fc8, 0x1fcc}, {0x1fd8, 0x1fdb}, {0x1fe8, 0x1fec}, {0x1ff8, 0x1ffc}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210b, 0x210d}, + {0x2110, 0x2112}, {0x2115, 0x2115}, {0x2119, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x212d}, {0x2130, 0x2133}, + {0x213e, 0x213f}, {0x2145, 0x2145}, {0x2183, 0x2183}, {0x2c00, 0x2c2f}, {0x2c60, 0x2c60}, {0x2c62, 0x2c64}, {0x2c67, 0x2c67}, {0x2c69, 0x2c69}, + {0x2c6b, 0x2c6b}, {0x2c6d, 0x2c70}, {0x2c72, 0x2c72}, {0x2c75, 0x2c75}, {0x2c7e, 0x2c80}, {0x2c82, 0x2c82}, {0x2c84, 0x2c84}, {0x2c86, 0x2c86}, + {0x2c88, 0x2c88}, {0x2c8a, 0x2c8a}, {0x2c8c, 0x2c8c}, {0x2c8e, 0x2c8e}, {0x2c90, 0x2c90}, {0x2c92, 0x2c92}, {0x2c94, 0x2c94}, {0x2c96, 0x2c96}, + {0x2c98, 0x2c98}, {0x2c9a, 0x2c9a}, {0x2c9c, 0x2c9c}, {0x2c9e, 0x2c9e}, {0x2ca0, 0x2ca0}, {0x2ca2, 0x2ca2}, {0x2ca4, 0x2ca4}, {0x2ca6, 0x2ca6}, + {0x2ca8, 0x2ca8}, {0x2caa, 0x2caa}, {0x2cac, 0x2cac}, {0x2cae, 0x2cae}, {0x2cb0, 0x2cb0}, {0x2cb2, 0x2cb2}, {0x2cb4, 0x2cb4}, {0x2cb6, 0x2cb6}, + {0x2cb8, 0x2cb8}, {0x2cba, 0x2cba}, {0x2cbc, 0x2cbc}, {0x2cbe, 0x2cbe}, {0x2cc0, 0x2cc0}, {0x2cc2, 0x2cc2}, {0x2cc4, 0x2cc4}, {0x2cc6, 0x2cc6}, + {0x2cc8, 0x2cc8}, {0x2cca, 0x2cca}, {0x2ccc, 0x2ccc}, {0x2cce, 0x2cce}, {0x2cd0, 0x2cd0}, {0x2cd2, 0x2cd2}, {0x2cd4, 0x2cd4}, {0x2cd6, 0x2cd6}, + {0x2cd8, 0x2cd8}, {0x2cda, 0x2cda}, {0x2cdc, 0x2cdc}, {0x2cde, 0x2cde}, {0x2ce0, 0x2ce0}, {0x2ce2, 0x2ce2}, {0x2ceb, 0x2ceb}, {0x2ced, 0x2ced}, + {0x2cf2, 0x2cf2}, {0xa640, 0xa640}, {0xa642, 0xa642}, {0xa644, 0xa644}, {0xa646, 0xa646}, {0xa648, 0xa648}, {0xa64a, 0xa64a}, {0xa64c, 0xa64c}, + {0xa64e, 0xa64e}, {0xa650, 0xa650}, {0xa652, 0xa652}, {0xa654, 0xa654}, {0xa656, 0xa656}, {0xa658, 0xa658}, {0xa65a, 0xa65a}, {0xa65c, 0xa65c}, + {0xa65e, 0xa65e}, {0xa660, 0xa660}, {0xa662, 0xa662}, {0xa664, 0xa664}, {0xa666, 0xa666}, {0xa668, 0xa668}, {0xa66a, 0xa66a}, {0xa66c, 0xa66c}, + {0xa680, 0xa680}, {0xa682, 0xa682}, {0xa684, 0xa684}, {0xa686, 0xa686}, {0xa688, 0xa688}, {0xa68a, 0xa68a}, {0xa68c, 0xa68c}, {0xa68e, 0xa68e}, + {0xa690, 0xa690}, {0xa692, 0xa692}, {0xa694, 0xa694}, {0xa696, 0xa696}, {0xa698, 0xa698}, {0xa69a, 0xa69a}, {0xa722, 0xa722}, {0xa724, 0xa724}, + {0xa726, 0xa726}, {0xa728, 0xa728}, {0xa72a, 0xa72a}, {0xa72c, 0xa72c}, {0xa72e, 0xa72e}, {0xa732, 0xa732}, {0xa734, 0xa734}, {0xa736, 0xa736}, + {0xa738, 0xa738}, {0xa73a, 0xa73a}, {0xa73c, 0xa73c}, {0xa73e, 0xa73e}, {0xa740, 0xa740}, {0xa742, 0xa742}, {0xa744, 0xa744}, {0xa746, 0xa746}, + {0xa748, 0xa748}, {0xa74a, 0xa74a}, {0xa74c, 0xa74c}, {0xa74e, 0xa74e}, {0xa750, 0xa750}, {0xa752, 0xa752}, {0xa754, 0xa754}, {0xa756, 0xa756}, + {0xa758, 0xa758}, {0xa75a, 0xa75a}, {0xa75c, 0xa75c}, {0xa75e, 0xa75e}, {0xa760, 0xa760}, {0xa762, 0xa762}, {0xa764, 0xa764}, {0xa766, 0xa766}, + {0xa768, 0xa768}, {0xa76a, 0xa76a}, {0xa76c, 0xa76c}, {0xa76e, 0xa76e}, {0xa779, 0xa779}, {0xa77b, 0xa77b}, {0xa77d, 0xa77e}, {0xa780, 0xa780}, + {0xa782, 0xa782}, {0xa784, 0xa784}, {0xa786, 0xa786}, {0xa78b, 0xa78b}, {0xa78d, 0xa78d}, {0xa790, 0xa790}, {0xa792, 0xa792}, {0xa796, 0xa796}, + {0xa798, 0xa798}, {0xa79a, 0xa79a}, {0xa79c, 0xa79c}, {0xa79e, 0xa79e}, {0xa7a0, 0xa7a0}, {0xa7a2, 0xa7a2}, {0xa7a4, 0xa7a4}, {0xa7a6, 0xa7a6}, + {0xa7a8, 0xa7a8}, {0xa7aa, 0xa7ae}, {0xa7b0, 0xa7b4}, {0xa7b6, 0xa7b6}, {0xa7b8, 0xa7b8}, {0xa7ba, 0xa7ba}, {0xa7bc, 0xa7bc}, {0xa7be, 0xa7be}, + {0xa7c0, 0xa7c0}, {0xa7c2, 0xa7c2}, {0xa7c4, 0xa7c7}, {0xa7c9, 0xa7c9}, {0xa7cb, 0xa7cc}, {0xa7d0, 0xa7d0}, {0xa7d6, 0xa7d6}, {0xa7d8, 0xa7d8}, + {0xa7da, 0xa7da}, {0xa7dc, 0xa7dc}, {0xa7f5, 0xa7f5}, {0xff21, 0xff3a}, {0x10400, 0x10427}, {0x104b0, 0x104d3}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, + {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10c80, 0x10cb2}, {0x10d50, 0x10d65}, {0x118a0, 0x118bf}, {0x16e40, 0x16e5f}, {0x1d400, 0x1d419}, {0x1d434, 0x1d44d}, + {0x1d468, 0x1d481}, {0x1d49c, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b5}, {0x1d4d0, 0x1d4e9}, + {0x1d504, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d538, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, + {0x1d54a, 0x1d550}, {0x1d56c, 0x1d585}, {0x1d5a0, 0x1d5b9}, {0x1d5d4, 0x1d5ed}, {0x1d608, 0x1d621}, {0x1d63c, 0x1d655}, {0x1d670, 0x1d689}, {0x1d6a8, 0x1d6c0}, + {0x1d6e2, 0x1d6fa}, {0x1d71c, 0x1d734}, {0x1d756, 0x1d76e}, {0x1d790, 0x1d7a8}, {0x1d7ca, 0x1d7ca}, {0x1e900, 0x1e921}, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -20177,8 +20640,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(71); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 1: ADVANCE_MAP( @@ -20219,8 +20682,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(2); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 2: ADVANCE_MAP( @@ -20261,8 +20724,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(2); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 3: ADVANCE_MAP( @@ -20307,8 +20770,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(6); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 4: ADVANCE_MAP( @@ -20351,8 +20814,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(7); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 5: ADVANCE_MAP( @@ -20379,8 +20842,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(20); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 6: ADVANCE_MAP( @@ -20425,8 +20888,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(6); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 7: ADVANCE_MAP( @@ -20469,8 +20932,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(7); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 8: ADVANCE_MAP( @@ -20512,8 +20975,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(12); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 9: ADVANCE_MAP( @@ -20546,8 +21009,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(13); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 10: ADVANCE_MAP( @@ -20579,8 +21042,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(14); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 11: ADVANCE_MAP( @@ -20615,8 +21078,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(15); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 12: ADVANCE_MAP( @@ -20658,8 +21121,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(12); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 13: ADVANCE_MAP( @@ -20691,8 +21154,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(13); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 14: ADVANCE_MAP( @@ -20724,8 +21187,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(14); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 15: ADVANCE_MAP( @@ -20760,8 +21223,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(15); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 16: ADVANCE_MAP( @@ -20798,8 +21261,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(17); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 17: ADVANCE_MAP( @@ -20836,8 +21299,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(17); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 18: ADVANCE_MAP( @@ -20875,8 +21338,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(19); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 19: ADVANCE_MAP( @@ -20914,8 +21377,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(19); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 20: ADVANCE_MAP( @@ -20941,8 +21404,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(20); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 21: ADVANCE_MAP( @@ -21185,10 +21648,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(138); END_STATE(); case 69: - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(156); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(156); END_STATE(); case 70: - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(153); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(153); END_STATE(); case 71: if (eof) ADVANCE(72); @@ -21241,8 +21704,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x202f || lookahead == 0x205f || lookahead == 0x3000) SKIP(71); - if (set_contains(sym_name_character_set_1, 614, lookahead)) ADVANCE(155); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(152); + if (set_contains(sym_name_character_set_1, 654, lookahead)) ADVANCE(155); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(152); END_STATE(); case 72: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -21582,11 +22045,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 143: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead == ')') ADVANCE(173); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(156); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(156); END_STATE(); case 144: ACCEPT_TOKEN(anon_sym_POUND); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(156); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(156); END_STATE(); case 145: ACCEPT_TOKEN(anon_sym_POUND2); @@ -21598,11 +22061,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 147: ACCEPT_TOKEN(anon_sym_POUND2); if (lookahead == ')') ADVANCE(173); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(156); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(156); END_STATE(); case 148: ACCEPT_TOKEN(anon_sym_POUND2); - if (set_contains(sym_variable_character_set_1, 937, lookahead)) ADVANCE(156); + if (set_contains(sym_variable_character_set_1, 1176, lookahead)) ADVANCE(156); END_STATE(); case 149: ACCEPT_TOKEN(anon_sym_PIPE2); @@ -21618,11 +22081,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 152: ACCEPT_TOKEN(sym_variable); if (lookahead == '#') ADVANCE(151); - if (set_contains(sym_implicit_variable_character_set_1, 556, lookahead)) ADVANCE(152); + if (set_contains(sym_implicit_variable_character_set_1, 926, lookahead)) ADVANCE(152); END_STATE(); case 153: ACCEPT_TOKEN(sym_implicit_variable); - if (set_contains(sym_implicit_variable_character_set_1, 556, lookahead)) ADVANCE(153); + if (set_contains(sym_implicit_variable_character_set_1, 926, lookahead)) ADVANCE(153); END_STATE(); case 154: ACCEPT_TOKEN(sym_name); @@ -21631,11 +22094,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 155: ACCEPT_TOKEN(sym_name); if (lookahead == '#') ADVANCE(154); - if (set_contains(sym_implicit_variable_character_set_1, 556, lookahead)) ADVANCE(155); + if (set_contains(sym_implicit_variable_character_set_1, 926, lookahead)) ADVANCE(155); END_STATE(); case 156: ACCEPT_TOKEN(sym_label); - if (set_contains(sym_implicit_variable_character_set_1, 556, lookahead)) ADVANCE(156); + if (set_contains(sym_implicit_variable_character_set_1, 926, lookahead)) ADVANCE(156); END_STATE(); case 157: ACCEPT_TOKEN(anon_sym_EQ_GT); @@ -22373,7 +22836,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { } } -static const TSLexMode ts_lex_modes[STATE_COUNT] = { +static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 0, .external_lex_state = 2}, [2] = {.lex_state = 3, .external_lex_state = 3}, @@ -35239,7 +35702,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { + [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_variable] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), @@ -35394,7 +35857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1), [sym__consym] = ACTIONS(1), }, - [1] = { + [STATE(1)] = { [sym_haskell] = STATE(12559), [sym_header] = STATE(10478), [sym__body] = STATE(12807), @@ -35408,7 +35871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_cpp] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, - [2] = { + [STATE(2)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -35580,7 +36043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [3] = { + [STATE(3)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -35751,7 +36214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [4] = { + [STATE(4)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -35920,7 +36383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [5] = { + [STATE(5)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -36088,7 +36551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [6] = { + [STATE(6)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -36256,7 +36719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [7] = { + [STATE(7)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -36424,7 +36887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [8] = { + [STATE(8)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -36591,7 +37054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [9] = { + [STATE(9)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -36758,7 +37221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [10] = { + [STATE(10)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -36925,7 +37388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [11] = { + [STATE(11)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -37092,7 +37555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [12] = { + [STATE(12)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -37258,7 +37721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [13] = { + [STATE(13)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -37424,7 +37887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [14] = { + [STATE(14)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -37590,7 +38053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [15] = { + [STATE(15)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -37756,7 +38219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [16] = { + [STATE(16)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -37922,7 +38385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [17] = { + [STATE(17)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -38087,7 +38550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [18] = { + [STATE(18)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -38252,7 +38715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [19] = { + [STATE(19)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -38417,7 +38880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [20] = { + [STATE(20)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -38582,7 +39045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [21] = { + [STATE(21)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -38746,7 +39209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [22] = { + [STATE(22)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -38910,7 +39373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [23] = { + [STATE(23)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -39074,7 +39537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [24] = { + [STATE(24)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -39236,7 +39699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [25] = { + [STATE(25)] = { [sym_type_synomym] = STATE(10711), [sym_kind_signature] = STATE(10711), [sym_type_instance] = STATE(10711), @@ -39398,7 +39861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [26] = { + [STATE(26)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11992), @@ -39550,7 +40013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [27] = { + [STATE(27)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11462), @@ -39702,7 +40165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [28] = { + [STATE(28)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11426), @@ -39854,7 +40317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [29] = { + [STATE(29)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11407), @@ -40003,7 +40466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [30] = { + [STATE(30)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(12023), @@ -40152,7 +40615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [31] = { + [STATE(31)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(12125), @@ -40301,7 +40764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [32] = { + [STATE(32)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11426), @@ -40450,7 +40913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [33] = { + [STATE(33)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11992), @@ -40599,7 +41062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [34] = { + [STATE(34)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11426), @@ -40748,7 +41211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [35] = { + [STATE(35)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11462), @@ -40897,7 +41360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [36] = { + [STATE(36)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11413), @@ -41046,7 +41509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [37] = { + [STATE(37)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -41188,7 +41651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [38] = { + [STATE(38)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -41328,7 +41791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [39] = { + [STATE(39)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -41468,7 +41931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [40] = { + [STATE(40)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -41608,7 +42071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [41] = { + [STATE(41)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -41748,7 +42211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [42] = { + [STATE(42)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -41888,7 +42351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [43] = { + [STATE(43)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -42028,7 +42491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [44] = { + [STATE(44)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -42168,7 +42631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [45] = { + [STATE(45)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -42307,7 +42770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [46] = { + [STATE(46)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -42446,7 +42909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [47] = { + [STATE(47)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -42585,7 +43048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [48] = { + [STATE(48)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -42724,7 +43187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [49] = { + [STATE(49)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -42863,7 +43326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [50] = { + [STATE(50)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -43000,7 +43463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [51] = { + [STATE(51)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -43136,7 +43599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(333), [sym__consym] = ACTIONS(333), }, - [52] = { + [STATE(52)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -43272,7 +43735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(339), [sym__consym] = ACTIONS(339), }, - [53] = { + [STATE(53)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -43408,7 +43871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [54] = { + [STATE(54)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -43544,7 +44007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [55] = { + [STATE(55)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -43680,7 +44143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [56] = { + [STATE(56)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -43816,7 +44279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [57] = { + [STATE(57)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -43952,7 +44415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [58] = { + [STATE(58)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -44088,7 +44551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [59] = { + [STATE(59)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -44224,7 +44687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [60] = { + [STATE(60)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -44360,7 +44823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [61] = { + [STATE(61)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -44495,7 +44958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [62] = { + [STATE(62)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -44627,7 +45090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [63] = { + [STATE(63)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -44759,7 +45222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [64] = { + [STATE(64)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -44891,7 +45354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [65] = { + [STATE(65)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -45023,7 +45486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [66] = { + [STATE(66)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -45155,7 +45618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [67] = { + [STATE(67)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -45287,7 +45750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [68] = { + [STATE(68)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -45419,7 +45882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [69] = { + [STATE(69)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -45551,7 +46014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [70] = { + [STATE(70)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -45683,7 +46146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [71] = { + [STATE(71)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -45815,7 +46278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [72] = { + [STATE(72)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -45947,7 +46410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [73] = { + [STATE(73)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -46078,7 +46541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [74] = { + [STATE(74)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -46209,7 +46672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [75] = { + [STATE(75)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -46340,7 +46803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [76] = { + [STATE(76)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -46471,7 +46934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [77] = { + [STATE(77)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -46602,7 +47065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [78] = { + [STATE(78)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -46733,7 +47196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [79] = { + [STATE(79)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -46864,7 +47327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [80] = { + [STATE(80)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -46995,7 +47458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [81] = { + [STATE(81)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -47126,7 +47589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [82] = { + [STATE(82)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -47257,7 +47720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [83] = { + [STATE(83)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -47388,7 +47851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [84] = { + [STATE(84)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -47519,7 +47982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [85] = { + [STATE(85)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -47650,7 +48113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [86] = { + [STATE(86)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -47781,7 +48244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [87] = { + [STATE(87)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -47912,7 +48375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [88] = { + [STATE(88)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -48043,7 +48506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [89] = { + [STATE(89)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -48174,7 +48637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [90] = { + [STATE(90)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -48305,7 +48768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [91] = { + [STATE(91)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -48436,7 +48899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [92] = { + [STATE(92)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -48567,7 +49030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [93] = { + [STATE(93)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -48698,7 +49161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [94] = { + [STATE(94)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -48829,7 +49292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [95] = { + [STATE(95)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -48960,7 +49423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [96] = { + [STATE(96)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -49091,7 +49554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [97] = { + [STATE(97)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -49222,7 +49685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [98] = { + [STATE(98)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -49353,7 +49816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [99] = { + [STATE(99)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -49484,7 +49947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [100] = { + [STATE(100)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -49615,7 +50078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [101] = { + [STATE(101)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -49746,7 +50209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [102] = { + [STATE(102)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -49877,7 +50340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [103] = { + [STATE(103)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -50008,7 +50471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [104] = { + [STATE(104)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -50139,7 +50602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [105] = { + [STATE(105)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -50270,7 +50733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [106] = { + [STATE(106)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -50401,7 +50864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [107] = { + [STATE(107)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -50532,7 +50995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [108] = { + [STATE(108)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -50663,7 +51126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [109] = { + [STATE(109)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -50794,7 +51257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [110] = { + [STATE(110)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -50925,7 +51388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [111] = { + [STATE(111)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -51056,7 +51519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [112] = { + [STATE(112)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -51187,7 +51650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [113] = { + [STATE(113)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -51318,7 +51781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [114] = { + [STATE(114)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -51449,7 +51912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [115] = { + [STATE(115)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -51580,7 +52043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [116] = { + [STATE(116)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -51711,7 +52174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [117] = { + [STATE(117)] = { [sym__at_type] = STATE(4176), [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), @@ -51841,7 +52304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [118] = { + [STATE(118)] = { [sym__at_type] = STATE(4176), [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), @@ -51971,7 +52434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [119] = { + [STATE(119)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -52100,7 +52563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [120] = { + [STATE(120)] = { [sym__at_type] = STATE(4176), [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), @@ -52229,7 +52692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(339), [sym__consym] = ACTIONS(339), }, - [121] = { + [STATE(121)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -52358,7 +52821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [122] = { + [STATE(122)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -52487,7 +52950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [123] = { + [STATE(123)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -52616,7 +53079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [124] = { + [STATE(124)] = { [sym__at_type] = STATE(4176), [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), @@ -52745,7 +53208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(333), [sym__consym] = ACTIONS(333), }, - [125] = { + [STATE(125)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -52874,7 +53337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [126] = { + [STATE(126)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -53003,7 +53466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [127] = { + [STATE(127)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -53132,7 +53595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [128] = { + [STATE(128)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -53261,7 +53724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [129] = { + [STATE(129)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -53390,7 +53853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [130] = { + [STATE(130)] = { [sym__at_type] = STATE(4176), [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), @@ -53519,7 +53982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [131] = { + [STATE(131)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -53648,7 +54111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [132] = { + [STATE(132)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -53777,7 +54240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [133] = { + [STATE(133)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -53906,7 +54369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [134] = { + [STATE(134)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -54035,7 +54498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [135] = { + [STATE(135)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -54164,7 +54627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [136] = { + [STATE(136)] = { [sym__at_type] = STATE(4176), [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), @@ -54293,7 +54756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [137] = { + [STATE(137)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -54422,7 +54885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [138] = { + [STATE(138)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -54551,7 +55014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [139] = { + [STATE(139)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -54680,7 +55143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [140] = { + [STATE(140)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -54809,7 +55272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [141] = { + [STATE(141)] = { [sym__at_type] = STATE(4176), [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), @@ -54938,7 +55401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [142] = { + [STATE(142)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -55067,7 +55530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [143] = { + [STATE(143)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -55196,7 +55659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [144] = { + [STATE(144)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -55325,7 +55788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [145] = { + [STATE(145)] = { [sym__at_type] = STATE(4176), [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), @@ -55454,7 +55917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [146] = { + [STATE(146)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -55583,7 +56046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [147] = { + [STATE(147)] = { [sym__at_type] = STATE(4176), [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), @@ -55712,7 +56175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [148] = { + [STATE(148)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -55841,7 +56304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [149] = { + [STATE(149)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -55970,7 +56433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [150] = { + [STATE(150)] = { [sym__at_type] = STATE(4176), [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), @@ -56099,7 +56562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [151] = { + [STATE(151)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -56228,7 +56691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [152] = { + [STATE(152)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -56357,7 +56820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [153] = { + [STATE(153)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -56486,7 +56949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [154] = { + [STATE(154)] = { [sym__at_type] = STATE(4176), [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), @@ -56615,7 +57078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [155] = { + [STATE(155)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -56744,7 +57207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [156] = { + [STATE(156)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -56873,7 +57336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [157] = { + [STATE(157)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -57002,7 +57465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [158] = { + [STATE(158)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -57131,7 +57594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [159] = { + [STATE(159)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -57260,7 +57723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [160] = { + [STATE(160)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -57389,7 +57852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [161] = { + [STATE(161)] = { [sym__at_type] = STATE(4176), [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), @@ -57518,7 +57981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [162] = { + [STATE(162)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -57647,7 +58110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [163] = { + [STATE(163)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -57776,7 +58239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [164] = { + [STATE(164)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -57905,7 +58368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [165] = { + [STATE(165)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -58034,7 +58497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [166] = { + [STATE(166)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -58163,7 +58626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [167] = { + [STATE(167)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -58292,7 +58755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [168] = { + [STATE(168)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -58421,7 +58884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [169] = { + [STATE(169)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -58550,7 +59013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [170] = { + [STATE(170)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -58679,7 +59142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [171] = { + [STATE(171)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -58808,7 +59271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [172] = { + [STATE(172)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -58937,7 +59400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [173] = { + [STATE(173)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -59065,7 +59528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [174] = { + [STATE(174)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -59193,7 +59656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [175] = { + [STATE(175)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -59321,7 +59784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [176] = { + [STATE(176)] = { [sym__at_type] = STATE(4692), [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), @@ -59449,7 +59912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [177] = { + [STATE(177)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -59577,7 +60040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [178] = { + [STATE(178)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -59705,7 +60168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [179] = { + [STATE(179)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -59833,7 +60296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [180] = { + [STATE(180)] = { [sym__at_type] = STATE(4761), [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), @@ -59961,7 +60424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [181] = { + [STATE(181)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -60089,7 +60552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [182] = { + [STATE(182)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -60217,7 +60680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [183] = { + [STATE(183)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -60345,7 +60808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [184] = { + [STATE(184)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -60473,7 +60936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [185] = { + [STATE(185)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -60601,7 +61064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [186] = { + [STATE(186)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -60729,7 +61192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [187] = { + [STATE(187)] = { [sym__at_type] = STATE(4326), [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), @@ -60857,7 +61320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [188] = { + [STATE(188)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -60985,7 +61448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [189] = { + [STATE(189)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -61113,7 +61576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [190] = { + [STATE(190)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -61241,7 +61704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [191] = { + [STATE(191)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -61369,7 +61832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [192] = { + [STATE(192)] = { [sym__at_type] = STATE(4326), [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), @@ -61497,7 +61960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [193] = { + [STATE(193)] = { [sym__at_type] = STATE(4692), [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), @@ -61625,7 +62088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [194] = { + [STATE(194)] = { [sym__at_type] = STATE(4761), [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), @@ -61753,7 +62216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [195] = { + [STATE(195)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -61881,7 +62344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [196] = { + [STATE(196)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -62009,7 +62472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [197] = { + [STATE(197)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -62137,7 +62600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [198] = { + [STATE(198)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -62265,7 +62728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [199] = { + [STATE(199)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -62393,7 +62856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [200] = { + [STATE(200)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -62521,7 +62984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [201] = { + [STATE(201)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -62649,7 +63112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [202] = { + [STATE(202)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -62777,7 +63240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [203] = { + [STATE(203)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -62905,7 +63368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [204] = { + [STATE(204)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -63033,7 +63496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [205] = { + [STATE(205)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -63161,7 +63624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [206] = { + [STATE(206)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -63289,7 +63752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [207] = { + [STATE(207)] = { [sym__at_type] = STATE(4692), [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), @@ -63416,7 +63879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [208] = { + [STATE(208)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -63543,7 +64006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [209] = { + [STATE(209)] = { [sym__at_type] = STATE(4326), [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), @@ -63670,7 +64133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [210] = { + [STATE(210)] = { [sym__at_type] = STATE(4692), [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), @@ -63797,7 +64260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(333), [sym__consym] = ACTIONS(333), }, - [211] = { + [STATE(211)] = { [sym__at_type] = STATE(4692), [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), @@ -63924,7 +64387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(339), [sym__consym] = ACTIONS(339), }, - [212] = { + [STATE(212)] = { [sym__at_type] = STATE(4692), [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), @@ -64051,7 +64514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [213] = { + [STATE(213)] = { [sym__at_type] = STATE(4692), [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), @@ -64178,7 +64641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [214] = { + [STATE(214)] = { [sym__at_type] = STATE(4692), [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), @@ -64305,7 +64768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [215] = { + [STATE(215)] = { [sym__at_type] = STATE(4692), [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), @@ -64432,7 +64895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [216] = { + [STATE(216)] = { [sym__at_type] = STATE(4692), [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), @@ -64559,7 +65022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [217] = { + [STATE(217)] = { [sym__at_type] = STATE(4692), [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), @@ -64686,7 +65149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [218] = { + [STATE(218)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -64813,7 +65276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [219] = { + [STATE(219)] = { [sym__at_type] = STATE(4761), [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), @@ -64940,7 +65403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(333), [sym__consym] = ACTIONS(333), }, - [220] = { + [STATE(220)] = { [sym__at_type] = STATE(4761), [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), @@ -65067,7 +65530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(339), [sym__consym] = ACTIONS(339), }, - [221] = { + [STATE(221)] = { [sym__at_type] = STATE(4761), [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), @@ -65194,7 +65657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [222] = { + [STATE(222)] = { [sym__at_type] = STATE(4761), [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), @@ -65321,7 +65784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [223] = { + [STATE(223)] = { [sym__at_type] = STATE(4761), [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), @@ -65448,7 +65911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [224] = { + [STATE(224)] = { [sym__at_type] = STATE(4761), [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), @@ -65575,7 +66038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [225] = { + [STATE(225)] = { [sym__at_type] = STATE(4761), [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), @@ -65702,7 +66165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [226] = { + [STATE(226)] = { [sym__at_type] = STATE(4761), [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), @@ -65829,7 +66292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [227] = { + [STATE(227)] = { [sym__at_type] = STATE(4761), [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), @@ -65956,7 +66419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [228] = { + [STATE(228)] = { [sym__at_type] = STATE(4761), [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), @@ -66083,7 +66546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [229] = { + [STATE(229)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -66210,7 +66673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [230] = { + [STATE(230)] = { [sym__at_type] = STATE(4326), [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), @@ -66337,7 +66800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(333), [sym__consym] = ACTIONS(333), }, - [231] = { + [STATE(231)] = { [sym__at_type] = STATE(4326), [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), @@ -66464,7 +66927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(339), [sym__consym] = ACTIONS(339), }, - [232] = { + [STATE(232)] = { [sym_generator] = STATE(11097), [sym_let] = STATE(11097), [sym__exp_th_quoted_name] = STATE(5396), @@ -66591,7 +67054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [233] = { + [STATE(233)] = { [sym__at_type] = STATE(4326), [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), @@ -66718,7 +67181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [234] = { + [STATE(234)] = { [sym__at_type] = STATE(4326), [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), @@ -66845,7 +67308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [235] = { + [STATE(235)] = { [sym__at_type] = STATE(4326), [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), @@ -66972,7 +67435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [236] = { + [STATE(236)] = { [sym__at_type] = STATE(4326), [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), @@ -67099,7 +67562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [237] = { + [STATE(237)] = { [sym__at_type] = STATE(4326), [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), @@ -67226,7 +67689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [238] = { + [STATE(238)] = { [sym__at_type] = STATE(4326), [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), @@ -67353,7 +67816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [239] = { + [STATE(239)] = { [sym__at_type] = STATE(4326), [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), @@ -67480,7 +67943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [240] = { + [STATE(240)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -67607,7 +68070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [241] = { + [STATE(241)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -67734,7 +68197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [242] = { + [STATE(242)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -67861,7 +68324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [243] = { + [STATE(243)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -67988,7 +68451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [244] = { + [STATE(244)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -68115,7 +68578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [245] = { + [STATE(245)] = { [sym__at_type] = STATE(4692), [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), @@ -68242,7 +68705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [246] = { + [STATE(246)] = { [sym__at_type] = STATE(5171), [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), @@ -68368,7 +68831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [247] = { + [STATE(247)] = { [sym__at_type] = STATE(5266), [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), @@ -68494,7 +68957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [248] = { + [STATE(248)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -68620,7 +69083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [249] = { + [STATE(249)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -68746,7 +69209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [250] = { + [STATE(250)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -68872,7 +69335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [251] = { + [STATE(251)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -68998,7 +69461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [252] = { + [STATE(252)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -69124,7 +69587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(339), [sym__consym] = ACTIONS(339), }, - [253] = { + [STATE(253)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -69250,7 +69713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [254] = { + [STATE(254)] = { [sym_generator] = STATE(11097), [sym_let] = STATE(11097), [sym__exp_th_quoted_name] = STATE(5396), @@ -69376,7 +69839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [255] = { + [STATE(255)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -69502,7 +69965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [256] = { + [STATE(256)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -69628,7 +70091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [257] = { + [STATE(257)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -69754,7 +70217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [258] = { + [STATE(258)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -69880,7 +70343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [259] = { + [STATE(259)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -70006,7 +70469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [260] = { + [STATE(260)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -70132,7 +70595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [261] = { + [STATE(261)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -70258,7 +70721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [262] = { + [STATE(262)] = { [sym__at_type] = STATE(5171), [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), @@ -70384,7 +70847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [263] = { + [STATE(263)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -70510,7 +70973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [264] = { + [STATE(264)] = { [sym__at_type] = STATE(5427), [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), @@ -70636,7 +71099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [265] = { + [STATE(265)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -70762,7 +71225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [266] = { + [STATE(266)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -70888,7 +71351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [267] = { + [STATE(267)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -71014,7 +71477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [268] = { + [STATE(268)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -71140,7 +71603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [269] = { + [STATE(269)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -71266,7 +71729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [270] = { + [STATE(270)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -71392,7 +71855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [271] = { + [STATE(271)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -71518,7 +71981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [272] = { + [STATE(272)] = { [sym__at_type] = STATE(5266), [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), @@ -71644,7 +72107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [273] = { + [STATE(273)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -71770,7 +72233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [274] = { + [STATE(274)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -71896,7 +72359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [275] = { + [STATE(275)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -72022,7 +72485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [276] = { + [STATE(276)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -72148,7 +72611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [277] = { + [STATE(277)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -72274,7 +72737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [278] = { + [STATE(278)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -72400,7 +72863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [279] = { + [STATE(279)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -72526,7 +72989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [280] = { + [STATE(280)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -72652,7 +73115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [281] = { + [STATE(281)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -72778,7 +73241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [282] = { + [STATE(282)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -72904,7 +73367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [283] = { + [STATE(283)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -73030,7 +73493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(333), [sym__consym] = ACTIONS(333), }, - [284] = { + [STATE(284)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -73156,7 +73619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [285] = { + [STATE(285)] = { [sym__at_type] = STATE(5427), [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), @@ -73282,7 +73745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [286] = { + [STATE(286)] = { [sym_generator] = STATE(10832), [sym_let] = STATE(10863), [sym__exp_th_quoted_name] = STATE(5117), @@ -73408,7 +73871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [287] = { + [STATE(287)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -73534,7 +73997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [288] = { + [STATE(288)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -73660,7 +74123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [289] = { + [STATE(289)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -73786,7 +74249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [290] = { + [STATE(290)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -73912,7 +74375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [291] = { + [STATE(291)] = { [sym__at_type] = STATE(5427), [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), @@ -74037,7 +74500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [292] = { + [STATE(292)] = { [sym__at_type] = STATE(5266), [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), @@ -74162,7 +74625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [293] = { + [STATE(293)] = { [sym__at_type] = STATE(5171), [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), @@ -74287,7 +74750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [294] = { + [STATE(294)] = { [sym__at_type] = STATE(5171), [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), @@ -74412,7 +74875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [295] = { + [STATE(295)] = { [sym__at_type] = STATE(5266), [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), @@ -74537,7 +75000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [296] = { + [STATE(296)] = { [sym__at_type] = STATE(5266), [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), @@ -74662,7 +75125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [297] = { + [STATE(297)] = { [sym__at_type] = STATE(5427), [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), @@ -74787,7 +75250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [298] = { + [STATE(298)] = { [sym__at_type] = STATE(5266), [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), @@ -74912,7 +75375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [299] = { + [STATE(299)] = { [sym__at_type] = STATE(5266), [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), @@ -75037,7 +75500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [300] = { + [STATE(300)] = { [sym__at_type] = STATE(5266), [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), @@ -75162,7 +75625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [301] = { + [STATE(301)] = { [sym__at_type] = STATE(5171), [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), @@ -75287,7 +75750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [302] = { + [STATE(302)] = { [sym__at_type] = STATE(5427), [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), @@ -75412,7 +75875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [303] = { + [STATE(303)] = { [sym__at_type] = STATE(5171), [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), @@ -75537,7 +76000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(333), [sym__consym] = ACTIONS(333), }, - [304] = { + [STATE(304)] = { [sym__at_type] = STATE(5572), [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), @@ -75662,7 +76125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [305] = { + [STATE(305)] = { [sym__at_type] = STATE(5266), [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), @@ -75787,7 +76250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(333), [sym__consym] = ACTIONS(333), }, - [306] = { + [STATE(306)] = { [sym__at_type] = STATE(5427), [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), @@ -75912,7 +76375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [307] = { + [STATE(307)] = { [sym__at_type] = STATE(5171), [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), @@ -76037,7 +76500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [308] = { + [STATE(308)] = { [sym__at_type] = STATE(5171), [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), @@ -76162,7 +76625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [309] = { + [STATE(309)] = { [sym__at_type] = STATE(5266), [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), @@ -76287,7 +76750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [310] = { + [STATE(310)] = { [sym__at_type] = STATE(5171), [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), @@ -76412,7 +76875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [311] = { + [STATE(311)] = { [sym__at_type] = STATE(5266), [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), @@ -76537,7 +77000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [312] = { + [STATE(312)] = { [sym__at_type] = STATE(5427), [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), @@ -76662,7 +77125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [313] = { + [STATE(313)] = { [sym__at_type] = STATE(5572), [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), @@ -76787,7 +77250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [314] = { + [STATE(314)] = { [sym__at_type] = STATE(5427), [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), @@ -76912,7 +77375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(339), [sym__consym] = ACTIONS(339), }, - [315] = { + [STATE(315)] = { [sym__at_type] = STATE(5171), [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), @@ -77037,7 +77500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [316] = { + [STATE(316)] = { [sym__at_type] = STATE(5427), [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), @@ -77162,7 +77625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(333), [sym__consym] = ACTIONS(333), }, - [317] = { + [STATE(317)] = { [sym__at_type] = STATE(5171), [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), @@ -77287,7 +77750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [318] = { + [STATE(318)] = { [sym__at_type] = STATE(5266), [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), @@ -77412,7 +77875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(339), [sym__consym] = ACTIONS(339), }, - [319] = { + [STATE(319)] = { [sym__at_type] = STATE(5427), [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), @@ -77537,7 +78000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [320] = { + [STATE(320)] = { [sym__at_type] = STATE(5427), [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), @@ -77662,7 +78125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [321] = { + [STATE(321)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -77787,7 +78250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [322] = { + [STATE(322)] = { [sym__at_type] = STATE(5427), [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), @@ -77912,7 +78375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [323] = { + [STATE(323)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -78037,7 +78500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [324] = { + [STATE(324)] = { [sym__at_type] = STATE(4926), [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), @@ -78162,7 +78625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [325] = { + [STATE(325)] = { [sym__at_type] = STATE(5171), [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), @@ -78287,7 +78750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(339), [sym__consym] = ACTIONS(339), }, - [326] = { + [STATE(326)] = { [sym__at_type] = STATE(5572), [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), @@ -78411,7 +78874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [327] = { + [STATE(327)] = { [sym__at_type] = STATE(5572), [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), @@ -78535,7 +78998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [328] = { + [STATE(328)] = { [sym__at_type] = STATE(5572), [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), @@ -78659,7 +79122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [329] = { + [STATE(329)] = { [sym__type_parens] = STATE(2310), [sym__type_tuple] = STATE(2324), [sym__type_unboxed_tuple] = STATE(2337), @@ -78783,7 +79246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [330] = { + [STATE(330)] = { [sym__type_parens] = STATE(2310), [sym__type_tuple] = STATE(2324), [sym__type_unboxed_tuple] = STATE(2337), @@ -78907,7 +79370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [331] = { + [STATE(331)] = { [sym_generator] = STATE(12182), [sym_let] = STATE(11898), [sym_guard] = STATE(10951), @@ -79031,7 +79494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [332] = { + [STATE(332)] = { [sym__at_type] = STATE(5572), [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), @@ -79155,7 +79618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(333), [sym__consym] = ACTIONS(333), }, - [333] = { + [STATE(333)] = { [sym__type_parens] = STATE(2310), [sym__type_tuple] = STATE(2324), [sym__type_unboxed_tuple] = STATE(2337), @@ -79279,7 +79742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [334] = { + [STATE(334)] = { [sym__at_type] = STATE(5572), [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), @@ -79403,7 +79866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(339), [sym__consym] = ACTIONS(339), }, - [335] = { + [STATE(335)] = { [sym__type_parens] = STATE(2310), [sym__type_tuple] = STATE(2324), [sym__type_unboxed_tuple] = STATE(2337), @@ -79527,7 +79990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [336] = { + [STATE(336)] = { [sym__at_type] = STATE(5572), [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), @@ -79651,7 +80114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [337] = { + [STATE(337)] = { [sym__type_parens] = STATE(2310), [sym__type_tuple] = STATE(2324), [sym__type_unboxed_tuple] = STATE(2337), @@ -79775,7 +80238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [338] = { + [STATE(338)] = { [sym_generator] = STATE(10785), [sym_let] = STATE(10824), [sym_guard] = STATE(9990), @@ -79899,7 +80362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [339] = { + [STATE(339)] = { [sym__at_type] = STATE(5572), [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), @@ -80023,7 +80486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [340] = { + [STATE(340)] = { [sym__at_type] = STATE(5572), [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), @@ -80147,7 +80610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [341] = { + [STATE(341)] = { [sym__type_parens] = STATE(2310), [sym__type_tuple] = STATE(2324), [sym__type_unboxed_tuple] = STATE(2337), @@ -80271,7 +80734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [342] = { + [STATE(342)] = { [sym__at_type] = STATE(5572), [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), @@ -80395,7 +80858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [343] = { + [STATE(343)] = { [sym__at_type] = STATE(5572), [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), @@ -80519,7 +80982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [344] = { + [STATE(344)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -80642,7 +81105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [345] = { + [STATE(345)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -80765,7 +81228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [346] = { + [STATE(346)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -80888,7 +81351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [347] = { + [STATE(347)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -81011,7 +81474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [348] = { + [STATE(348)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -81134,7 +81597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [349] = { + [STATE(349)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -81257,7 +81720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [350] = { + [STATE(350)] = { [sym__at_type] = STATE(5171), [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), @@ -81380,7 +81843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [351] = { + [STATE(351)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -81503,7 +81966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [352] = { + [STATE(352)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -81626,7 +82089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [353] = { + [STATE(353)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -81749,7 +82212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [354] = { + [STATE(354)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -81872,7 +82335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [355] = { + [STATE(355)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -81995,7 +82458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [356] = { + [STATE(356)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -82118,7 +82581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [357] = { + [STATE(357)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -82241,7 +82704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [358] = { + [STATE(358)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -82364,7 +82827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [359] = { + [STATE(359)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -82487,7 +82950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [360] = { + [STATE(360)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -82610,7 +83073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [361] = { + [STATE(361)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -82733,7 +83196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [362] = { + [STATE(362)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -82856,7 +83319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [363] = { + [STATE(363)] = { [sym_generator] = STATE(12182), [sym_let] = STATE(11898), [sym_guard] = STATE(12036), @@ -82979,7 +83442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [364] = { + [STATE(364)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -83102,7 +83565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [365] = { + [STATE(365)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -83225,7 +83688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [366] = { + [STATE(366)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -83348,7 +83811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [367] = { + [STATE(367)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -83471,7 +83934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [368] = { + [STATE(368)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -83594,7 +84057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [369] = { + [STATE(369)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -83717,7 +84180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [370] = { + [STATE(370)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -83840,7 +84303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [371] = { + [STATE(371)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -83963,7 +84426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [372] = { + [STATE(372)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -84086,7 +84549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [373] = { + [STATE(373)] = { [sym_generator] = STATE(10785), [sym_let] = STATE(10824), [sym_guard] = STATE(10662), @@ -84209,7 +84672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [374] = { + [STATE(374)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -84332,7 +84795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [375] = { + [STATE(375)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -84453,7 +84916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [376] = { + [STATE(376)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11405), @@ -84574,7 +85037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [377] = { + [STATE(377)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -84695,7 +85158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [378] = { + [STATE(378)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -84816,7 +85279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [379] = { + [STATE(379)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(12125), @@ -84937,7 +85400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [380] = { + [STATE(380)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -85058,7 +85521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [381] = { + [STATE(381)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -85179,7 +85642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [382] = { + [STATE(382)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -85300,7 +85763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [383] = { + [STATE(383)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -85421,7 +85884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [384] = { + [STATE(384)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11413), @@ -85542,7 +86005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [385] = { + [STATE(385)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -85663,7 +86126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [386] = { + [STATE(386)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(12011), @@ -85784,7 +86247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [387] = { + [STATE(387)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -85905,7 +86368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [388] = { + [STATE(388)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11486), @@ -86026,7 +86489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [389] = { + [STATE(389)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11462), @@ -86147,7 +86610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [390] = { + [STATE(390)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -86268,7 +86731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [391] = { + [STATE(391)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11407), @@ -86389,7 +86852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [392] = { + [STATE(392)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -86510,7 +86973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [393] = { + [STATE(393)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11426), @@ -86631,7 +87094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [394] = { + [STATE(394)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -86752,7 +87215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [395] = { + [STATE(395)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -86873,7 +87336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [396] = { + [STATE(396)] = { [sym__at_type] = STATE(3014), [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), @@ -86994,7 +87457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [397] = { + [STATE(397)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -87115,7 +87578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [398] = { + [STATE(398)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(12023), @@ -87236,7 +87699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [399] = { + [STATE(399)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11992), @@ -87357,7 +87820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [400] = { + [STATE(400)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11405), @@ -87477,7 +87940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [401] = { + [STATE(401)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11992), @@ -87597,7 +88060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [402] = { + [STATE(402)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11407), @@ -87717,7 +88180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [403] = { + [STATE(403)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11486), @@ -87837,7 +88300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [404] = { + [STATE(404)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(12125), @@ -87957,7 +88420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [405] = { + [STATE(405)] = { [sym__type_parens] = STATE(2710), [sym__type_tuple] = STATE(2713), [sym__type_unboxed_tuple] = STATE(2729), @@ -88077,7 +88540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [406] = { + [STATE(406)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11426), @@ -88197,7 +88660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [407] = { + [STATE(407)] = { [sym__type_parens] = STATE(2710), [sym__type_tuple] = STATE(2713), [sym__type_unboxed_tuple] = STATE(2729), @@ -88317,7 +88780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [408] = { + [STATE(408)] = { [sym__type_parens] = STATE(2710), [sym__type_tuple] = STATE(2713), [sym__type_unboxed_tuple] = STATE(2729), @@ -88437,7 +88900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [409] = { + [STATE(409)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11413), @@ -88557,7 +89020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [410] = { + [STATE(410)] = { [sym__type_parens] = STATE(2710), [sym__type_tuple] = STATE(2713), [sym__type_unboxed_tuple] = STATE(2729), @@ -88677,7 +89140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [411] = { + [STATE(411)] = { [sym__type_parens] = STATE(2710), [sym__type_tuple] = STATE(2713), [sym__type_unboxed_tuple] = STATE(2729), @@ -88797,7 +89260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [412] = { + [STATE(412)] = { [sym__type_parens] = STATE(2710), [sym__type_tuple] = STATE(2713), [sym__type_unboxed_tuple] = STATE(2729), @@ -88917,7 +89380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1321), [sym__consym] = ACTIONS(1321), }, - [413] = { + [STATE(413)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(12023), @@ -89037,7 +89500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [414] = { + [STATE(414)] = { [sym__type_parens] = STATE(2710), [sym__type_tuple] = STATE(2713), [sym__type_unboxed_tuple] = STATE(2729), @@ -89157,7 +89620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [415] = { + [STATE(415)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(12011), @@ -89277,7 +89740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [416] = { + [STATE(416)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple_elems] = STATE(11462), @@ -89397,7 +89860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [417] = { + [STATE(417)] = { [sym__type_parens] = STATE(2830), [sym__type_tuple] = STATE(2838), [sym__type_unboxed_tuple] = STATE(2754), @@ -89516,7 +89979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [418] = { + [STATE(418)] = { [sym__type_parens] = STATE(2830), [sym__type_tuple] = STATE(2838), [sym__type_unboxed_tuple] = STATE(2754), @@ -89635,7 +90098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [419] = { + [STATE(419)] = { [sym__type_parens] = STATE(2830), [sym__type_tuple] = STATE(2838), [sym__type_unboxed_tuple] = STATE(2754), @@ -89754,7 +90217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [420] = { + [STATE(420)] = { [sym__type_parens] = STATE(2830), [sym__type_tuple] = STATE(2838), [sym__type_unboxed_tuple] = STATE(2754), @@ -89873,7 +90336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [421] = { + [STATE(421)] = { [sym__type_parens] = STATE(2830), [sym__type_tuple] = STATE(2838), [sym__type_unboxed_tuple] = STATE(2754), @@ -89992,7 +90455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [422] = { + [STATE(422)] = { [sym__type_parens] = STATE(2830), [sym__type_tuple] = STATE(2838), [sym__type_unboxed_tuple] = STATE(2754), @@ -90111,7 +90574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [423] = { + [STATE(423)] = { [sym__type_parens] = STATE(3069), [sym__type_tuple] = STATE(3078), [sym__type_unboxed_tuple] = STATE(3091), @@ -90228,7 +90691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [424] = { + [STATE(424)] = { [sym__type_parens] = STATE(3069), [sym__type_tuple] = STATE(3078), [sym__type_unboxed_tuple] = STATE(3091), @@ -90345,7 +90808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [425] = { + [STATE(425)] = { [sym__type_parens] = STATE(3069), [sym__type_tuple] = STATE(3078), [sym__type_unboxed_tuple] = STATE(3091), @@ -90462,7 +90925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [426] = { + [STATE(426)] = { [sym__type_parens] = STATE(3069), [sym__type_tuple] = STATE(3078), [sym__type_unboxed_tuple] = STATE(3091), @@ -90579,7 +91042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [427] = { + [STATE(427)] = { [sym__type_parens] = STATE(3069), [sym__type_tuple] = STATE(3078), [sym__type_unboxed_tuple] = STATE(3091), @@ -90696,7 +91159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [428] = { + [STATE(428)] = { [sym__type_parens] = STATE(3069), [sym__type_tuple] = STATE(3078), [sym__type_unboxed_tuple] = STATE(3091), @@ -90813,7 +91276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [429] = { + [STATE(429)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12064), [sym__type_tuple] = STATE(3895), @@ -90929,7 +91392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [430] = { + [STATE(430)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11565), [sym__type_tuple] = STATE(3895), @@ -91045,7 +91508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [431] = { + [STATE(431)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11488), [sym__type_tuple] = STATE(3895), @@ -91161,7 +91624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [432] = { + [STATE(432)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11507), [sym__type_tuple] = STATE(3895), @@ -91277,7 +91740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [433] = { + [STATE(433)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12055), [sym__type_tuple] = STATE(3895), @@ -91393,7 +91856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [434] = { + [STATE(434)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11615), [sym__type_tuple] = STATE(3895), @@ -91509,7 +91972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [435] = { + [STATE(435)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12109), [sym__type_tuple] = STATE(3895), @@ -91625,7 +92088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [436] = { + [STATE(436)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11379), [sym__type_tuple] = STATE(3895), @@ -91741,7 +92204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [437] = { + [STATE(437)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11489), [sym__type_tuple] = STATE(3895), @@ -91857,7 +92320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [438] = { + [STATE(438)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11579), [sym__type_tuple] = STATE(3895), @@ -91973,7 +92436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [439] = { + [STATE(439)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11651), [sym__type_tuple] = STATE(3895), @@ -92089,7 +92552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [440] = { + [STATE(440)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11740), [sym__type_tuple] = STATE(3895), @@ -92205,7 +92668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [441] = { + [STATE(441)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11919), [sym__type_tuple] = STATE(3895), @@ -92321,7 +92784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [442] = { + [STATE(442)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11970), [sym__type_tuple] = STATE(3895), @@ -92437,7 +92900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [443] = { + [STATE(443)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12038), [sym__type_tuple] = STATE(3895), @@ -92553,7 +93016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [444] = { + [STATE(444)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12095), [sym__type_tuple] = STATE(3895), @@ -92669,7 +93132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [445] = { + [STATE(445)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12202), [sym__type_tuple] = STATE(3895), @@ -92785,7 +93248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [446] = { + [STATE(446)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12105), [sym__type_tuple] = STATE(3895), @@ -92901,7 +93364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [447] = { + [STATE(447)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11955), [sym__type_tuple] = STATE(3895), @@ -93017,7 +93480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [448] = { + [STATE(448)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11334), [sym__type_tuple] = STATE(3895), @@ -93133,7 +93596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [449] = { + [STATE(449)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11461), [sym__type_tuple] = STATE(3895), @@ -93249,7 +93712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [450] = { + [STATE(450)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11590), [sym__type_tuple] = STATE(3895), @@ -93365,7 +93828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [451] = { + [STATE(451)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11690), [sym__type_tuple] = STATE(3895), @@ -93481,7 +93944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [452] = { + [STATE(452)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11824), [sym__type_tuple] = STATE(3895), @@ -93597,7 +94060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [453] = { + [STATE(453)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11937), [sym__type_tuple] = STATE(3895), @@ -93713,7 +94176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [454] = { + [STATE(454)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11991), [sym__type_tuple] = STATE(3895), @@ -93829,7 +94292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [455] = { + [STATE(455)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12071), [sym__type_tuple] = STATE(3895), @@ -93945,7 +94408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [456] = { + [STATE(456)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12133), [sym__type_tuple] = STATE(3895), @@ -94061,7 +94524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [457] = { + [STATE(457)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12193), [sym__type_tuple] = STATE(3895), @@ -94177,7 +94640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [458] = { + [STATE(458)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11344), [sym__type_tuple] = STATE(3895), @@ -94293,7 +94756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [459] = { + [STATE(459)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11369), [sym__type_tuple] = STATE(3895), @@ -94409,7 +94872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [460] = { + [STATE(460)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11398), [sym__type_tuple] = STATE(3895), @@ -94525,7 +94988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [461] = { + [STATE(461)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11421), [sym__type_tuple] = STATE(3895), @@ -94641,7 +95104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [462] = { + [STATE(462)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11447), [sym__type_tuple] = STATE(3895), @@ -94757,7 +95220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [463] = { + [STATE(463)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11475), [sym__type_tuple] = STATE(3895), @@ -94873,7 +95336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [464] = { + [STATE(464)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11503), [sym__type_tuple] = STATE(3895), @@ -94989,7 +95452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [465] = { + [STATE(465)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11528), [sym__type_tuple] = STATE(3895), @@ -95105,7 +95568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [466] = { + [STATE(466)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11553), [sym__type_tuple] = STATE(3895), @@ -95221,7 +95684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [467] = { + [STATE(467)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11578), [sym__type_tuple] = STATE(3895), @@ -95337,7 +95800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [468] = { + [STATE(468)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11606), [sym__type_tuple] = STATE(3895), @@ -95453,7 +95916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [469] = { + [STATE(469)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11630), [sym__type_tuple] = STATE(3895), @@ -95569,7 +96032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [470] = { + [STATE(470)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11650), [sym__type_tuple] = STATE(3895), @@ -95685,7 +96148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [471] = { + [STATE(471)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11676), [sym__type_tuple] = STATE(3895), @@ -95801,7 +96264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [472] = { + [STATE(472)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11703), [sym__type_tuple] = STATE(3895), @@ -95917,7 +96380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [473] = { + [STATE(473)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11719), [sym__type_tuple] = STATE(3895), @@ -96033,7 +96496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [474] = { + [STATE(474)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11924), [sym__type_tuple] = STATE(3895), @@ -96149,7 +96612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [475] = { + [STATE(475)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11704), [sym__type_tuple] = STATE(3895), @@ -96265,7 +96728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [476] = { + [STATE(476)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12220), [sym__type_tuple] = STATE(3895), @@ -96381,7 +96844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [477] = { + [STATE(477)] = { [sym__type_parens] = STATE(3366), [sym__type_tuple] = STATE(3367), [sym__type_unboxed_tuple] = STATE(3368), @@ -96496,7 +96959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [478] = { + [STATE(478)] = { [sym__type_parens] = STATE(3344), [sym__type_tuple] = STATE(3345), [sym__type_unboxed_tuple] = STATE(3346), @@ -96611,7 +97074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [479] = { + [STATE(479)] = { [sym__type_parens] = STATE(3366), [sym__type_tuple] = STATE(3367), [sym__type_unboxed_tuple] = STATE(3368), @@ -96726,7 +97189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [480] = { + [STATE(480)] = { [sym__type_parens] = STATE(3366), [sym__type_tuple] = STATE(3367), [sym__type_unboxed_tuple] = STATE(3368), @@ -96841,7 +97304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [481] = { + [STATE(481)] = { [sym__type_parens] = STATE(3253), [sym__type_tuple] = STATE(3254), [sym__type_unboxed_tuple] = STATE(3255), @@ -96956,7 +97419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [482] = { + [STATE(482)] = { [sym__type_parens] = STATE(3253), [sym__type_tuple] = STATE(3254), [sym__type_unboxed_tuple] = STATE(3255), @@ -97071,7 +97534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [483] = { + [STATE(483)] = { [sym__type_parens] = STATE(3253), [sym__type_tuple] = STATE(3254), [sym__type_unboxed_tuple] = STATE(3255), @@ -97186,7 +97649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [484] = { + [STATE(484)] = { [sym__type_parens] = STATE(3286), [sym__type_tuple] = STATE(3287), [sym__type_unboxed_tuple] = STATE(3288), @@ -97301,7 +97764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [485] = { + [STATE(485)] = { [sym__type_parens] = STATE(3253), [sym__type_tuple] = STATE(3254), [sym__type_unboxed_tuple] = STATE(3255), @@ -97416,7 +97879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [486] = { + [STATE(486)] = { [sym__type_parens] = STATE(3344), [sym__type_tuple] = STATE(3345), [sym__type_unboxed_tuple] = STATE(3346), @@ -97531,7 +97994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [487] = { + [STATE(487)] = { [sym__type_parens] = STATE(3344), [sym__type_tuple] = STATE(3345), [sym__type_unboxed_tuple] = STATE(3346), @@ -97646,7 +98109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [488] = { + [STATE(488)] = { [sym__type_parens] = STATE(3344), [sym__type_tuple] = STATE(3345), [sym__type_unboxed_tuple] = STATE(3346), @@ -97761,7 +98224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [489] = { + [STATE(489)] = { [sym__type_parens] = STATE(3366), [sym__type_tuple] = STATE(3367), [sym__type_unboxed_tuple] = STATE(3368), @@ -97876,7 +98339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [490] = { + [STATE(490)] = { [sym__type_parens] = STATE(3253), [sym__type_tuple] = STATE(3254), [sym__type_unboxed_tuple] = STATE(3255), @@ -97991,7 +98454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [491] = { + [STATE(491)] = { [sym__type_parens] = STATE(3253), [sym__type_tuple] = STATE(3254), [sym__type_unboxed_tuple] = STATE(3255), @@ -98106,7 +98569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [492] = { + [STATE(492)] = { [sym__type_parens] = STATE(3344), [sym__type_tuple] = STATE(3345), [sym__type_unboxed_tuple] = STATE(3346), @@ -98221,7 +98684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [493] = { + [STATE(493)] = { [sym__type_parens] = STATE(3286), [sym__type_tuple] = STATE(3287), [sym__type_unboxed_tuple] = STATE(3288), @@ -98336,7 +98799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [494] = { + [STATE(494)] = { [sym__type_parens] = STATE(3366), [sym__type_tuple] = STATE(3367), [sym__type_unboxed_tuple] = STATE(3368), @@ -98451,7 +98914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [495] = { + [STATE(495)] = { [sym__type_parens] = STATE(3286), [sym__type_tuple] = STATE(3287), [sym__type_unboxed_tuple] = STATE(3288), @@ -98566,7 +99029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [496] = { + [STATE(496)] = { [sym__type_parens] = STATE(3286), [sym__type_tuple] = STATE(3287), [sym__type_unboxed_tuple] = STATE(3288), @@ -98681,7 +99144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [497] = { + [STATE(497)] = { [sym__type_parens] = STATE(3286), [sym__type_tuple] = STATE(3287), [sym__type_unboxed_tuple] = STATE(3288), @@ -98796,7 +99259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [498] = { + [STATE(498)] = { [sym__type_parens] = STATE(3286), [sym__type_tuple] = STATE(3287), [sym__type_unboxed_tuple] = STATE(3288), @@ -98911,7 +99374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [499] = { + [STATE(499)] = { [sym__type_parens] = STATE(3366), [sym__type_tuple] = STATE(3367), [sym__type_unboxed_tuple] = STATE(3368), @@ -99026,7 +99489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [500] = { + [STATE(500)] = { [sym__type_parens] = STATE(3344), [sym__type_tuple] = STATE(3345), [sym__type_unboxed_tuple] = STATE(3346), @@ -99141,7 +99604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [501] = { + [STATE(501)] = { [sym__type_parens] = STATE(3572), [sym__type_tuple] = STATE(3573), [sym__type_unboxed_tuple] = STATE(3574), @@ -99255,7 +99718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [502] = { + [STATE(502)] = { [sym__type_parens] = STATE(3655), [sym__type_tuple] = STATE(3656), [sym__type_unboxed_tuple] = STATE(3657), @@ -99369,7 +99832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [503] = { + [STATE(503)] = { [sym__type_parens] = STATE(3572), [sym__type_tuple] = STATE(3573), [sym__type_unboxed_tuple] = STATE(3574), @@ -99483,7 +99946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [504] = { + [STATE(504)] = { [sym__type_parens] = STATE(3655), [sym__type_tuple] = STATE(3656), [sym__type_unboxed_tuple] = STATE(3657), @@ -99597,7 +100060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [505] = { + [STATE(505)] = { [sym__type_parens] = STATE(3655), [sym__type_tuple] = STATE(3656), [sym__type_unboxed_tuple] = STATE(3657), @@ -99711,7 +100174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [506] = { + [STATE(506)] = { [sym__type_parens] = STATE(3655), [sym__type_tuple] = STATE(3656), [sym__type_unboxed_tuple] = STATE(3657), @@ -99825,7 +100288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [507] = { + [STATE(507)] = { [sym__type_parens] = STATE(3572), [sym__type_tuple] = STATE(3573), [sym__type_unboxed_tuple] = STATE(3574), @@ -99939,7 +100402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [508] = { + [STATE(508)] = { [sym__type_parens] = STATE(3572), [sym__type_tuple] = STATE(3573), [sym__type_unboxed_tuple] = STATE(3574), @@ -100053,7 +100516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [509] = { + [STATE(509)] = { [sym__type_parens] = STATE(3655), [sym__type_tuple] = STATE(3656), [sym__type_unboxed_tuple] = STATE(3657), @@ -100167,7 +100630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [510] = { + [STATE(510)] = { [sym__type_parens] = STATE(3572), [sym__type_tuple] = STATE(3573), [sym__type_unboxed_tuple] = STATE(3574), @@ -100281,7 +100744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [511] = { + [STATE(511)] = { [sym__type_parens] = STATE(3655), [sym__type_tuple] = STATE(3656), [sym__type_unboxed_tuple] = STATE(3657), @@ -100395,7 +100858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [512] = { + [STATE(512)] = { [sym__type_parens] = STATE(3572), [sym__type_tuple] = STATE(3573), [sym__type_unboxed_tuple] = STATE(3574), @@ -100509,7 +100972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [513] = { + [STATE(513)] = { [sym__type_parens] = STATE(3698), [sym__type_tuple] = STATE(3699), [sym__type_unboxed_tuple] = STATE(3700), @@ -100622,7 +101085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [514] = { + [STATE(514)] = { [sym__type_parens] = STATE(3698), [sym__type_tuple] = STATE(3699), [sym__type_unboxed_tuple] = STATE(3700), @@ -100735,7 +101198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [515] = { + [STATE(515)] = { [sym__type_parens] = STATE(3698), [sym__type_tuple] = STATE(3699), [sym__type_unboxed_tuple] = STATE(3700), @@ -100848,7 +101311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [516] = { + [STATE(516)] = { [sym__type_parens] = STATE(3698), [sym__type_tuple] = STATE(3699), [sym__type_unboxed_tuple] = STATE(3700), @@ -100961,7 +101424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1321), [sym__consym] = ACTIONS(1321), }, - [517] = { + [STATE(517)] = { [sym__type_parens] = STATE(3698), [sym__type_tuple] = STATE(3699), [sym__type_unboxed_tuple] = STATE(3700), @@ -101074,7 +101537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [518] = { + [STATE(518)] = { [sym__type_parens] = STATE(3698), [sym__type_tuple] = STATE(3699), [sym__type_unboxed_tuple] = STATE(3700), @@ -101187,7 +101650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [519] = { + [STATE(519)] = { [sym__type_parens] = STATE(3698), [sym__type_tuple] = STATE(3699), [sym__type_unboxed_tuple] = STATE(3700), @@ -101300,7 +101763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [520] = { + [STATE(520)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -101412,7 +101875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [521] = { + [STATE(521)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -101524,7 +101987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [522] = { + [STATE(522)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -101636,7 +102099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [523] = { + [STATE(523)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -101748,7 +102211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [524] = { + [STATE(524)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -101860,7 +102323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [525] = { + [STATE(525)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -101972,7 +102435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [526] = { + [STATE(526)] = { [sym__type_parens] = STATE(3979), [sym__type_tuple] = STATE(3980), [sym__type_unboxed_tuple] = STATE(3981), @@ -102083,7 +102546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1321), [sym__consym] = ACTIONS(1321), }, - [527] = { + [STATE(527)] = { [sym__type_parens] = STATE(3975), [sym__type_tuple] = STATE(3978), [sym__type_unboxed_tuple] = STATE(3991), @@ -102194,7 +102657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [528] = { + [STATE(528)] = { [sym__type_parens] = STATE(3975), [sym__type_tuple] = STATE(3978), [sym__type_unboxed_tuple] = STATE(3991), @@ -102305,7 +102768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [529] = { + [STATE(529)] = { [sym__type_parens] = STATE(4189), [sym__type_tuple] = STATE(4211), [sym__type_unboxed_tuple] = STATE(3932), @@ -102416,7 +102879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [530] = { + [STATE(530)] = { [sym__type_parens] = STATE(3975), [sym__type_tuple] = STATE(3978), [sym__type_unboxed_tuple] = STATE(3991), @@ -102527,7 +102990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [531] = { + [STATE(531)] = { [sym__type_parens] = STATE(4189), [sym__type_tuple] = STATE(4211), [sym__type_unboxed_tuple] = STATE(3932), @@ -102638,7 +103101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [532] = { + [STATE(532)] = { [sym__type_parens] = STATE(3975), [sym__type_tuple] = STATE(3978), [sym__type_unboxed_tuple] = STATE(3991), @@ -102749,7 +103212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [533] = { + [STATE(533)] = { [sym__type_parens] = STATE(3979), [sym__type_tuple] = STATE(3980), [sym__type_unboxed_tuple] = STATE(3981), @@ -102860,7 +103323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [534] = { + [STATE(534)] = { [sym__type_parens] = STATE(3979), [sym__type_tuple] = STATE(3980), [sym__type_unboxed_tuple] = STATE(3981), @@ -102971,7 +103434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [535] = { + [STATE(535)] = { [sym__type_parens] = STATE(3979), [sym__type_tuple] = STATE(3980), [sym__type_unboxed_tuple] = STATE(3981), @@ -103082,7 +103545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [536] = { + [STATE(536)] = { [sym__type_parens] = STATE(4189), [sym__type_tuple] = STATE(4211), [sym__type_unboxed_tuple] = STATE(3932), @@ -103193,7 +103656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [537] = { + [STATE(537)] = { [sym__type_parens] = STATE(3979), [sym__type_tuple] = STATE(3980), [sym__type_unboxed_tuple] = STATE(3981), @@ -103304,7 +103767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [538] = { + [STATE(538)] = { [sym__type_parens] = STATE(4189), [sym__type_tuple] = STATE(4211), [sym__type_unboxed_tuple] = STATE(3932), @@ -103415,7 +103878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [539] = { + [STATE(539)] = { [sym__type_parens] = STATE(4189), [sym__type_tuple] = STATE(4211), [sym__type_unboxed_tuple] = STATE(3932), @@ -103526,7 +103989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [540] = { + [STATE(540)] = { [sym__type_parens] = STATE(3979), [sym__type_tuple] = STATE(3980), [sym__type_unboxed_tuple] = STATE(3981), @@ -103637,7 +104100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [541] = { + [STATE(541)] = { [sym__type_parens] = STATE(3979), [sym__type_tuple] = STATE(3980), [sym__type_unboxed_tuple] = STATE(3981), @@ -103748,7 +104211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [542] = { + [STATE(542)] = { [sym__type_parens] = STATE(3975), [sym__type_tuple] = STATE(3978), [sym__type_unboxed_tuple] = STATE(3991), @@ -103859,7 +104322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [543] = { + [STATE(543)] = { [sym__type_parens] = STATE(3975), [sym__type_tuple] = STATE(3978), [sym__type_unboxed_tuple] = STATE(3991), @@ -103970,7 +104433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1321), [sym__consym] = ACTIONS(1321), }, - [544] = { + [STATE(544)] = { [sym__type_parens] = STATE(4189), [sym__type_tuple] = STATE(4211), [sym__type_unboxed_tuple] = STATE(3932), @@ -104081,7 +104544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1321), [sym__consym] = ACTIONS(1321), }, - [545] = { + [STATE(545)] = { [sym__type_parens] = STATE(4189), [sym__type_tuple] = STATE(4211), [sym__type_unboxed_tuple] = STATE(3932), @@ -104192,7 +104655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [546] = { + [STATE(546)] = { [sym__type_parens] = STATE(3975), [sym__type_tuple] = STATE(3978), [sym__type_unboxed_tuple] = STATE(3991), @@ -104303,7 +104766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [547] = { + [STATE(547)] = { [sym__type_parens] = STATE(4277), [sym__type_tuple] = STATE(4284), [sym__type_unboxed_tuple] = STATE(4289), @@ -104413,7 +104876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1321), [sym__consym] = ACTIONS(1321), }, - [548] = { + [STATE(548)] = { [sym__type_parens] = STATE(4277), [sym__type_tuple] = STATE(4284), [sym__type_unboxed_tuple] = STATE(4289), @@ -104523,7 +104986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [549] = { + [STATE(549)] = { [sym__type_parens] = STATE(4277), [sym__type_tuple] = STATE(4284), [sym__type_unboxed_tuple] = STATE(4289), @@ -104633,7 +105096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [550] = { + [STATE(550)] = { [sym__type_parens] = STATE(4277), [sym__type_tuple] = STATE(4284), [sym__type_unboxed_tuple] = STATE(4289), @@ -104743,7 +105206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [551] = { + [STATE(551)] = { [sym__type_parens] = STATE(4277), [sym__type_tuple] = STATE(4284), [sym__type_unboxed_tuple] = STATE(4289), @@ -104853,7 +105316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [552] = { + [STATE(552)] = { [sym__type_parens] = STATE(4277), [sym__type_tuple] = STATE(4284), [sym__type_unboxed_tuple] = STATE(4289), @@ -104963,7 +105426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [553] = { + [STATE(553)] = { [sym__type_parens] = STATE(4277), [sym__type_tuple] = STATE(4284), [sym__type_unboxed_tuple] = STATE(4289), @@ -105073,7 +105536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [554] = { + [STATE(554)] = { [sym__type_parens] = STATE(4521), [sym__type_tuple] = STATE(4529), [sym__type_unboxed_tuple] = STATE(4560), @@ -105182,7 +105645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [555] = { + [STATE(555)] = { [sym__type_parens] = STATE(4826), [sym__type_tuple] = STATE(4828), [sym__type_unboxed_tuple] = STATE(4846), @@ -105291,7 +105754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [556] = { + [STATE(556)] = { [sym__type_parens] = STATE(4826), [sym__type_tuple] = STATE(4828), [sym__type_unboxed_tuple] = STATE(4846), @@ -105400,7 +105863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1321), [sym__consym] = ACTIONS(1321), }, - [557] = { + [STATE(557)] = { [sym__type_parens] = STATE(4826), [sym__type_tuple] = STATE(4828), [sym__type_unboxed_tuple] = STATE(4846), @@ -105509,7 +105972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [558] = { + [STATE(558)] = { [sym__type_parens] = STATE(4353), [sym__type_tuple] = STATE(4354), [sym__type_unboxed_tuple] = STATE(4357), @@ -105618,7 +106081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1321), [sym__consym] = ACTIONS(1321), }, - [559] = { + [STATE(559)] = { [sym__type_parens] = STATE(4521), [sym__type_tuple] = STATE(4529), [sym__type_unboxed_tuple] = STATE(4560), @@ -105727,7 +106190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [560] = { + [STATE(560)] = { [sym__type_parens] = STATE(4826), [sym__type_tuple] = STATE(4828), [sym__type_unboxed_tuple] = STATE(4846), @@ -105836,7 +106299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [561] = { + [STATE(561)] = { [sym__type_parens] = STATE(4353), [sym__type_tuple] = STATE(4354), [sym__type_unboxed_tuple] = STATE(4357), @@ -105945,7 +106408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [562] = { + [STATE(562)] = { [sym__type_parens] = STATE(4521), [sym__type_tuple] = STATE(4529), [sym__type_unboxed_tuple] = STATE(4560), @@ -106054,7 +106517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [563] = { + [STATE(563)] = { [sym__type_parens] = STATE(4353), [sym__type_tuple] = STATE(4354), [sym__type_unboxed_tuple] = STATE(4357), @@ -106163,7 +106626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [564] = { + [STATE(564)] = { [sym__type_parens] = STATE(4521), [sym__type_tuple] = STATE(4529), [sym__type_unboxed_tuple] = STATE(4560), @@ -106272,7 +106735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [565] = { + [STATE(565)] = { [sym__type_parens] = STATE(4353), [sym__type_tuple] = STATE(4354), [sym__type_unboxed_tuple] = STATE(4357), @@ -106381,7 +106844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [566] = { + [STATE(566)] = { [sym__type_parens] = STATE(4826), [sym__type_tuple] = STATE(4828), [sym__type_unboxed_tuple] = STATE(4846), @@ -106490,7 +106953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [567] = { + [STATE(567)] = { [sym__type_parens] = STATE(4521), [sym__type_tuple] = STATE(4529), [sym__type_unboxed_tuple] = STATE(4560), @@ -106599,7 +107062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [568] = { + [STATE(568)] = { [sym__type_parens] = STATE(4353), [sym__type_tuple] = STATE(4354), [sym__type_unboxed_tuple] = STATE(4357), @@ -106708,7 +107171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [569] = { + [STATE(569)] = { [sym__type_parens] = STATE(4521), [sym__type_tuple] = STATE(4529), [sym__type_unboxed_tuple] = STATE(4560), @@ -106817,7 +107280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [570] = { + [STATE(570)] = { [sym__type_parens] = STATE(4826), [sym__type_tuple] = STATE(4828), [sym__type_unboxed_tuple] = STATE(4846), @@ -106926,7 +107389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [571] = { + [STATE(571)] = { [sym__type_parens] = STATE(4353), [sym__type_tuple] = STATE(4354), [sym__type_unboxed_tuple] = STATE(4357), @@ -107035,7 +107498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [572] = { + [STATE(572)] = { [sym__type_parens] = STATE(4521), [sym__type_tuple] = STATE(4529), [sym__type_unboxed_tuple] = STATE(4560), @@ -107144,7 +107607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1321), [sym__consym] = ACTIONS(1321), }, - [573] = { + [STATE(573)] = { [sym__type_parens] = STATE(4353), [sym__type_tuple] = STATE(4354), [sym__type_unboxed_tuple] = STATE(4357), @@ -107253,7 +107716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [574] = { + [STATE(574)] = { [sym__type_parens] = STATE(4826), [sym__type_tuple] = STATE(4828), [sym__type_unboxed_tuple] = STATE(4846), @@ -107362,7 +107825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [575] = { + [STATE(575)] = { [sym__type_parens] = STATE(4943), [sym__type_tuple] = STATE(4956), [sym__type_unboxed_tuple] = STATE(4960), @@ -107470,7 +107933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [576] = { + [STATE(576)] = { [sym__type_parens] = STATE(4872), [sym__type_tuple] = STATE(4875), [sym__type_unboxed_tuple] = STATE(4876), @@ -107578,7 +108041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [577] = { + [STATE(577)] = { [sym__type_parens] = STATE(4872), [sym__type_tuple] = STATE(4875), [sym__type_unboxed_tuple] = STATE(4876), @@ -107686,7 +108149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1321), [sym__consym] = ACTIONS(1321), }, - [578] = { + [STATE(578)] = { [sym__type_parens] = STATE(4943), [sym__type_tuple] = STATE(4956), [sym__type_unboxed_tuple] = STATE(4960), @@ -107794,7 +108257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [579] = { + [STATE(579)] = { [sym__type_parens] = STATE(4943), [sym__type_tuple] = STATE(4956), [sym__type_unboxed_tuple] = STATE(4960), @@ -107902,7 +108365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [580] = { + [STATE(580)] = { [sym__type_parens] = STATE(4943), [sym__type_tuple] = STATE(4956), [sym__type_unboxed_tuple] = STATE(4960), @@ -108010,7 +108473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [581] = { + [STATE(581)] = { [sym__type_parens] = STATE(4872), [sym__type_tuple] = STATE(4875), [sym__type_unboxed_tuple] = STATE(4876), @@ -108118,7 +108581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [582] = { + [STATE(582)] = { [sym__type_parens] = STATE(4943), [sym__type_tuple] = STATE(4956), [sym__type_unboxed_tuple] = STATE(4960), @@ -108226,7 +108689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [583] = { + [STATE(583)] = { [sym__type_parens] = STATE(4943), [sym__type_tuple] = STATE(4956), [sym__type_unboxed_tuple] = STATE(4960), @@ -108334,7 +108797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(1187), }, - [584] = { + [STATE(584)] = { [sym__type_parens] = STATE(4872), [sym__type_tuple] = STATE(4875), [sym__type_unboxed_tuple] = STATE(4876), @@ -108442,7 +108905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [585] = { + [STATE(585)] = { [sym__type_parens] = STATE(4872), [sym__type_tuple] = STATE(4875), [sym__type_unboxed_tuple] = STATE(4876), @@ -108550,7 +109013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [586] = { + [STATE(586)] = { [sym__type_parens] = STATE(4872), [sym__type_tuple] = STATE(4875), [sym__type_unboxed_tuple] = STATE(4876), @@ -108658,7 +109121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [587] = { + [STATE(587)] = { [sym__type_parens] = STATE(4872), [sym__type_tuple] = STATE(4875), [sym__type_unboxed_tuple] = STATE(4876), @@ -108766,7 +109229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [588] = { + [STATE(588)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -108873,7 +109336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [589] = { + [STATE(589)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -108980,7 +109443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [590] = { + [STATE(590)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -109087,7 +109550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [591] = { + [STATE(591)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -109194,7 +109657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [592] = { + [STATE(592)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -109301,7 +109764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [593] = { + [STATE(593)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -109408,7 +109871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [594] = { + [STATE(594)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -109515,7 +109978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [595] = { + [STATE(595)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -109622,7 +110085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [596] = { + [STATE(596)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -109729,7 +110192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [597] = { + [STATE(597)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -109836,7 +110299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [598] = { + [STATE(598)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -109943,7 +110406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [599] = { + [STATE(599)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -110050,7 +110513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [600] = { + [STATE(600)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -110157,7 +110620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [601] = { + [STATE(601)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -110264,7 +110727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [602] = { + [STATE(602)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -110371,7 +110834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [603] = { + [STATE(603)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -110478,7 +110941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [604] = { + [STATE(604)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -110585,7 +111048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [605] = { + [STATE(605)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -110692,7 +111155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [606] = { + [STATE(606)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -110799,7 +111262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [607] = { + [STATE(607)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -110906,7 +111369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [608] = { + [STATE(608)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -111013,7 +111476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [609] = { + [STATE(609)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -111120,7 +111583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [610] = { + [STATE(610)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -111227,7 +111690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [611] = { + [STATE(611)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -111334,7 +111797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [612] = { + [STATE(612)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -111441,7 +111904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [613] = { + [STATE(613)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -111548,7 +112011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [614] = { + [STATE(614)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -111655,7 +112118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [615] = { + [STATE(615)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -111762,7 +112225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [616] = { + [STATE(616)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -111869,7 +112332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [617] = { + [STATE(617)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -111976,7 +112439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [618] = { + [STATE(618)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -112083,7 +112546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [619] = { + [STATE(619)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -112190,7 +112653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [620] = { + [STATE(620)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -112297,7 +112760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [621] = { + [STATE(621)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -112404,7 +112867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [622] = { + [STATE(622)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -112511,7 +112974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [623] = { + [STATE(623)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -112618,7 +113081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [624] = { + [STATE(624)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -112725,7 +113188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [625] = { + [STATE(625)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -112832,7 +113295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [626] = { + [STATE(626)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -112939,7 +113402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [627] = { + [STATE(627)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -113046,7 +113509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [628] = { + [STATE(628)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -113153,7 +113616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [629] = { + [STATE(629)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -113260,7 +113723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [630] = { + [STATE(630)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -113367,7 +113830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [631] = { + [STATE(631)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -113474,7 +113937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [632] = { + [STATE(632)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -113581,7 +114044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [633] = { + [STATE(633)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -113688,7 +114151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [634] = { + [STATE(634)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -113795,7 +114258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [635] = { + [STATE(635)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -113902,7 +114365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [636] = { + [STATE(636)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -114009,7 +114472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [637] = { + [STATE(637)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -114116,7 +114579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [638] = { + [STATE(638)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -114223,7 +114686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [639] = { + [STATE(639)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -114330,7 +114793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [640] = { + [STATE(640)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -114437,7 +114900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [641] = { + [STATE(641)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -114544,7 +115007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [642] = { + [STATE(642)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -114651,7 +115114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [643] = { + [STATE(643)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -114758,7 +115221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [644] = { + [STATE(644)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -114865,7 +115328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [645] = { + [STATE(645)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -114972,7 +115435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [646] = { + [STATE(646)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -115079,7 +115542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [647] = { + [STATE(647)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -115186,7 +115649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [648] = { + [STATE(648)] = { [sym__type_parens] = STATE(5849), [sym__type_tuple] = STATE(5852), [sym__type_unboxed_tuple] = STATE(5854), @@ -115289,7 +115752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(1187), }, - [649] = { + [STATE(649)] = { [sym__type_parens] = STATE(5849), [sym__type_tuple] = STATE(5852), [sym__type_unboxed_tuple] = STATE(5854), @@ -115392,7 +115855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [650] = { + [STATE(650)] = { [sym__type_parens] = STATE(5849), [sym__type_tuple] = STATE(5852), [sym__type_unboxed_tuple] = STATE(5854), @@ -115495,7 +115958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [651] = { + [STATE(651)] = { [sym__type_parens] = STATE(5849), [sym__type_tuple] = STATE(5852), [sym__type_unboxed_tuple] = STATE(5854), @@ -115598,7 +116061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [652] = { + [STATE(652)] = { [sym__type_parens] = STATE(5849), [sym__type_tuple] = STATE(5852), [sym__type_unboxed_tuple] = STATE(5854), @@ -115701,7 +116164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [653] = { + [STATE(653)] = { [sym__type_parens] = STATE(5849), [sym__type_tuple] = STATE(5852), [sym__type_unboxed_tuple] = STATE(5854), @@ -115804,7 +116267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [654] = { + [STATE(654)] = { [sym__type_parens] = STATE(5943), [sym__type_tuple] = STATE(5947), [sym__type_unboxed_tuple] = STATE(6035), @@ -115906,7 +116369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [655] = { + [STATE(655)] = { [sym__type_parens] = STATE(5943), [sym__type_tuple] = STATE(5947), [sym__type_unboxed_tuple] = STATE(6035), @@ -116008,7 +116471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [656] = { + [STATE(656)] = { [sym__type_parens] = STATE(5906), [sym__type_tuple] = STATE(5907), [sym__type_unboxed_tuple] = STATE(5908), @@ -116110,7 +116573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [657] = { + [STATE(657)] = { [sym__type_parens] = STATE(5906), [sym__type_tuple] = STATE(5907), [sym__type_unboxed_tuple] = STATE(5908), @@ -116212,7 +116675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [658] = { + [STATE(658)] = { [sym__type_parens] = STATE(5906), [sym__type_tuple] = STATE(5907), [sym__type_unboxed_tuple] = STATE(5908), @@ -116314,7 +116777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [659] = { + [STATE(659)] = { [sym__type_parens] = STATE(5906), [sym__type_tuple] = STATE(5907), [sym__type_unboxed_tuple] = STATE(5908), @@ -116416,7 +116879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [660] = { + [STATE(660)] = { [sym__type_parens] = STATE(5943), [sym__type_tuple] = STATE(5947), [sym__type_unboxed_tuple] = STATE(6035), @@ -116518,7 +116981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [661] = { + [STATE(661)] = { [sym__type_parens] = STATE(5906), [sym__type_tuple] = STATE(5907), [sym__type_unboxed_tuple] = STATE(5908), @@ -116620,7 +117083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [662] = { + [STATE(662)] = { [sym__type_parens] = STATE(5948), [sym__type_tuple] = STATE(5949), [sym__type_unboxed_tuple] = STATE(5950), @@ -116722,7 +117185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [663] = { + [STATE(663)] = { [sym__type_parens] = STATE(5943), [sym__type_tuple] = STATE(5947), [sym__type_unboxed_tuple] = STATE(6035), @@ -116824,7 +117287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [664] = { + [STATE(664)] = { [sym__type_parens] = STATE(5948), [sym__type_tuple] = STATE(5949), [sym__type_unboxed_tuple] = STATE(5950), @@ -116926,7 +117389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [665] = { + [STATE(665)] = { [sym__type_parens] = STATE(5948), [sym__type_tuple] = STATE(5949), [sym__type_unboxed_tuple] = STATE(5950), @@ -117028,7 +117491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [666] = { + [STATE(666)] = { [sym__type_parens] = STATE(5948), [sym__type_tuple] = STATE(5949), [sym__type_unboxed_tuple] = STATE(5950), @@ -117130,7 +117593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [667] = { + [STATE(667)] = { [sym__type_parens] = STATE(5948), [sym__type_tuple] = STATE(5949), [sym__type_unboxed_tuple] = STATE(5950), @@ -117232,7 +117695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [668] = { + [STATE(668)] = { [sym__type_parens] = STATE(5948), [sym__type_tuple] = STATE(5949), [sym__type_unboxed_tuple] = STATE(5950), @@ -117334,7 +117797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [669] = { + [STATE(669)] = { [sym__type_parens] = STATE(5906), [sym__type_tuple] = STATE(5907), [sym__type_unboxed_tuple] = STATE(5908), @@ -117436,7 +117899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(1187), }, - [670] = { + [STATE(670)] = { [sym__type_parens] = STATE(5943), [sym__type_tuple] = STATE(5947), [sym__type_unboxed_tuple] = STATE(6035), @@ -117538,7 +118001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [671] = { + [STATE(671)] = { [sym__type_parens] = STATE(5943), [sym__type_tuple] = STATE(5947), [sym__type_unboxed_tuple] = STATE(6035), @@ -117640,7 +118103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [672] = { + [STATE(672)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11461), [sym__type_tuple] = STATE(3895), @@ -117741,7 +118204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [673] = { + [STATE(673)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12055), [sym__type_tuple] = STATE(3895), @@ -117842,7 +118305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [674] = { + [STATE(674)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11704), [sym__type_tuple] = STATE(3895), @@ -117943,7 +118406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [675] = { + [STATE(675)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12220), [sym__type_tuple] = STATE(3895), @@ -118044,7 +118507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [676] = { + [STATE(676)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -118145,7 +118608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [677] = { + [STATE(677)] = { [sym__type_parens] = STATE(6177), [sym__type_tuple] = STATE(6179), [sym__type_unboxed_tuple] = STATE(6183), @@ -118246,7 +118709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [678] = { + [STATE(678)] = { [sym__type_parens] = STATE(6177), [sym__type_tuple] = STATE(6179), [sym__type_unboxed_tuple] = STATE(6183), @@ -118347,7 +118810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [679] = { + [STATE(679)] = { [sym__type_parens] = STATE(6177), [sym__type_tuple] = STATE(6179), [sym__type_unboxed_tuple] = STATE(6183), @@ -118448,7 +118911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [680] = { + [STATE(680)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11488), [sym__type_tuple] = STATE(3895), @@ -118549,7 +119012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [681] = { + [STATE(681)] = { [sym__type_parens] = STATE(6177), [sym__type_tuple] = STATE(6179), [sym__type_unboxed_tuple] = STATE(6183), @@ -118650,7 +119113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [682] = { + [STATE(682)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12064), [sym__type_tuple] = STATE(3895), @@ -118751,7 +119214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [683] = { + [STATE(683)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11615), [sym__type_tuple] = STATE(3895), @@ -118852,7 +119315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [684] = { + [STATE(684)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11379), [sym__type_tuple] = STATE(3895), @@ -118953,7 +119416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [685] = { + [STATE(685)] = { [sym__type_parens] = STATE(6158), [sym__type_tuple] = STATE(6160), [sym__type_unboxed_tuple] = STATE(6161), @@ -119054,7 +119517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(1187), }, - [686] = { + [STATE(686)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11489), [sym__type_tuple] = STATE(3895), @@ -119155,7 +119618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [687] = { + [STATE(687)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11579), [sym__type_tuple] = STATE(3895), @@ -119256,7 +119719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [688] = { + [STATE(688)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11651), [sym__type_tuple] = STATE(3895), @@ -119357,7 +119820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [689] = { + [STATE(689)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11740), [sym__type_tuple] = STATE(3895), @@ -119458,7 +119921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [690] = { + [STATE(690)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11919), [sym__type_tuple] = STATE(3895), @@ -119559,7 +120022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [691] = { + [STATE(691)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11970), [sym__type_tuple] = STATE(3895), @@ -119660,7 +120123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [692] = { + [STATE(692)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12038), [sym__type_tuple] = STATE(3895), @@ -119761,7 +120224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [693] = { + [STATE(693)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12095), [sym__type_tuple] = STATE(3895), @@ -119862,7 +120325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [694] = { + [STATE(694)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12202), [sym__type_tuple] = STATE(3895), @@ -119963,7 +120426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [695] = { + [STATE(695)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12105), [sym__type_tuple] = STATE(3895), @@ -120064,7 +120527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [696] = { + [STATE(696)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11955), [sym__type_tuple] = STATE(3895), @@ -120165,7 +120628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [697] = { + [STATE(697)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11334), [sym__type_tuple] = STATE(3895), @@ -120266,7 +120729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [698] = { + [STATE(698)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11590), [sym__type_tuple] = STATE(3895), @@ -120367,7 +120830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [699] = { + [STATE(699)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11690), [sym__type_tuple] = STATE(3895), @@ -120468,7 +120931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [700] = { + [STATE(700)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11824), [sym__type_tuple] = STATE(3895), @@ -120569,7 +121032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [701] = { + [STATE(701)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11937), [sym__type_tuple] = STATE(3895), @@ -120670,7 +121133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [702] = { + [STATE(702)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11991), [sym__type_tuple] = STATE(3895), @@ -120771,7 +121234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [703] = { + [STATE(703)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12071), [sym__type_tuple] = STATE(3895), @@ -120872,7 +121335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [704] = { + [STATE(704)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12133), [sym__type_tuple] = STATE(3895), @@ -120973,7 +121436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [705] = { + [STATE(705)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12193), [sym__type_tuple] = STATE(3895), @@ -121074,7 +121537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [706] = { + [STATE(706)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11344), [sym__type_tuple] = STATE(3895), @@ -121175,7 +121638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [707] = { + [STATE(707)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11369), [sym__type_tuple] = STATE(3895), @@ -121276,7 +121739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [708] = { + [STATE(708)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11398), [sym__type_tuple] = STATE(3895), @@ -121377,7 +121840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [709] = { + [STATE(709)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11421), [sym__type_tuple] = STATE(3895), @@ -121478,7 +121941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [710] = { + [STATE(710)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11447), [sym__type_tuple] = STATE(3895), @@ -121579,7 +122042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [711] = { + [STATE(711)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11475), [sym__type_tuple] = STATE(3895), @@ -121680,7 +122143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [712] = { + [STATE(712)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11503), [sym__type_tuple] = STATE(3895), @@ -121781,7 +122244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [713] = { + [STATE(713)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11528), [sym__type_tuple] = STATE(3895), @@ -121882,7 +122345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [714] = { + [STATE(714)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11553), [sym__type_tuple] = STATE(3895), @@ -121983,7 +122446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [715] = { + [STATE(715)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11578), [sym__type_tuple] = STATE(3895), @@ -122084,7 +122547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [716] = { + [STATE(716)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11606), [sym__type_tuple] = STATE(3895), @@ -122185,7 +122648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [717] = { + [STATE(717)] = { [sym__type_parens] = STATE(6177), [sym__type_tuple] = STATE(6179), [sym__type_unboxed_tuple] = STATE(6183), @@ -122286,7 +122749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [718] = { + [STATE(718)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11630), [sym__type_tuple] = STATE(3895), @@ -122387,7 +122850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [719] = { + [STATE(719)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11650), [sym__type_tuple] = STATE(3895), @@ -122488,7 +122951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [720] = { + [STATE(720)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11676), [sym__type_tuple] = STATE(3895), @@ -122589,7 +123052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [721] = { + [STATE(721)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11703), [sym__type_tuple] = STATE(3895), @@ -122690,7 +123153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [722] = { + [STATE(722)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11719), [sym__type_tuple] = STATE(3895), @@ -122791,7 +123254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [723] = { + [STATE(723)] = { [sym__type_parens] = STATE(6158), [sym__type_tuple] = STATE(6160), [sym__type_unboxed_tuple] = STATE(6161), @@ -122892,7 +123355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [724] = { + [STATE(724)] = { [sym__type_parens] = STATE(6158), [sym__type_tuple] = STATE(6160), [sym__type_unboxed_tuple] = STATE(6161), @@ -122993,7 +123456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [725] = { + [STATE(725)] = { [sym__type_parens] = STATE(6158), [sym__type_tuple] = STATE(6160), [sym__type_unboxed_tuple] = STATE(6161), @@ -123094,7 +123557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [726] = { + [STATE(726)] = { [sym__type_parens] = STATE(6158), [sym__type_tuple] = STATE(6160), [sym__type_unboxed_tuple] = STATE(6161), @@ -123195,7 +123658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [727] = { + [STATE(727)] = { [sym__type_parens] = STATE(6158), [sym__type_tuple] = STATE(6160), [sym__type_unboxed_tuple] = STATE(6161), @@ -123296,7 +123759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [728] = { + [STATE(728)] = { [sym__type_parens] = STATE(6177), [sym__type_tuple] = STATE(6179), [sym__type_unboxed_tuple] = STATE(6183), @@ -123397,7 +123860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [729] = { + [STATE(729)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11924), [sym__type_tuple] = STATE(3895), @@ -123498,7 +123961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [730] = { + [STATE(730)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12109), [sym__type_tuple] = STATE(3895), @@ -123599,7 +124062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [731] = { + [STATE(731)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11565), [sym__type_tuple] = STATE(3895), @@ -123700,7 +124163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [732] = { + [STATE(732)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(11507), [sym__type_tuple] = STATE(3895), @@ -123801,7 +124264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [733] = { + [STATE(733)] = { [sym__type_parens] = STATE(6304), [sym__type_tuple] = STATE(6305), [sym__type_unboxed_tuple] = STATE(6306), @@ -123901,7 +124364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [734] = { + [STATE(734)] = { [sym__type_parens] = STATE(6304), [sym__type_tuple] = STATE(6305), [sym__type_unboxed_tuple] = STATE(6306), @@ -124001,7 +124464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [735] = { + [STATE(735)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -124101,7 +124564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [736] = { + [STATE(736)] = { [sym__type_parens] = STATE(6374), [sym__type_tuple] = STATE(6375), [sym__type_unboxed_tuple] = STATE(6376), @@ -124201,7 +124664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [737] = { + [STATE(737)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -124301,7 +124764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [738] = { + [STATE(738)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -124401,7 +124864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [739] = { + [STATE(739)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -124501,7 +124964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [740] = { + [STATE(740)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -124601,7 +125064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [741] = { + [STATE(741)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -124701,7 +125164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [742] = { + [STATE(742)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -124801,7 +125264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [743] = { + [STATE(743)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -124901,7 +125364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [744] = { + [STATE(744)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -125001,7 +125464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [745] = { + [STATE(745)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -125101,7 +125564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [746] = { + [STATE(746)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -125201,7 +125664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [747] = { + [STATE(747)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -125301,7 +125764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [748] = { + [STATE(748)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -125401,7 +125864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [749] = { + [STATE(749)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -125501,7 +125964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [750] = { + [STATE(750)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -125601,7 +126064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [751] = { + [STATE(751)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -125701,7 +126164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [752] = { + [STATE(752)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -125801,7 +126264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [753] = { + [STATE(753)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -125901,7 +126364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [754] = { + [STATE(754)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -126001,7 +126464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [755] = { + [STATE(755)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -126101,7 +126564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [756] = { + [STATE(756)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -126201,7 +126664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [757] = { + [STATE(757)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -126301,7 +126764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [758] = { + [STATE(758)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -126401,7 +126864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [759] = { + [STATE(759)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -126501,7 +126964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [760] = { + [STATE(760)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -126601,7 +127064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [761] = { + [STATE(761)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -126701,7 +127164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [762] = { + [STATE(762)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -126801,7 +127264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [763] = { + [STATE(763)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -126901,7 +127364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [764] = { + [STATE(764)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -127001,7 +127464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [765] = { + [STATE(765)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -127101,7 +127564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [766] = { + [STATE(766)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -127201,7 +127664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [767] = { + [STATE(767)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -127301,7 +127764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [768] = { + [STATE(768)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -127401,7 +127864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [769] = { + [STATE(769)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -127501,7 +127964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [770] = { + [STATE(770)] = { [sym__type_parens] = STATE(6254), [sym__type_tuple] = STATE(6255), [sym__type_unboxed_tuple] = STATE(6256), @@ -127601,7 +128064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [771] = { + [STATE(771)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -127701,7 +128164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [772] = { + [STATE(772)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -127801,7 +128264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [773] = { + [STATE(773)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -127901,7 +128364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [774] = { + [STATE(774)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -128001,7 +128464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [775] = { + [STATE(775)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -128101,7 +128564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [776] = { + [STATE(776)] = { [sym__type_parens] = STATE(6374), [sym__type_tuple] = STATE(6375), [sym__type_unboxed_tuple] = STATE(6376), @@ -128201,7 +128664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [777] = { + [STATE(777)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -128301,7 +128764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [778] = { + [STATE(778)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -128401,7 +128864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [779] = { + [STATE(779)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -128501,7 +128964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [780] = { + [STATE(780)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -128601,7 +129064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [781] = { + [STATE(781)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -128701,7 +129164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [782] = { + [STATE(782)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -128801,7 +129264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [783] = { + [STATE(783)] = { [sym__type_parens] = STATE(6304), [sym__type_tuple] = STATE(6305), [sym__type_unboxed_tuple] = STATE(6306), @@ -128901,7 +129364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [784] = { + [STATE(784)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -129001,7 +129464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [785] = { + [STATE(785)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -129101,7 +129564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [786] = { + [STATE(786)] = { [sym__type_parens] = STATE(6361), [sym__type_tuple] = STATE(6363), [sym__type_unboxed_tuple] = STATE(6364), @@ -129201,7 +129664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [787] = { + [STATE(787)] = { [sym__type_parens] = STATE(6361), [sym__type_tuple] = STATE(6363), [sym__type_unboxed_tuple] = STATE(6364), @@ -129301,7 +129764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [788] = { + [STATE(788)] = { [sym__type_parens] = STATE(6361), [sym__type_tuple] = STATE(6363), [sym__type_unboxed_tuple] = STATE(6364), @@ -129401,7 +129864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [789] = { + [STATE(789)] = { [sym__type_parens] = STATE(6361), [sym__type_tuple] = STATE(6363), [sym__type_unboxed_tuple] = STATE(6364), @@ -129501,7 +129964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [790] = { + [STATE(790)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -129601,7 +130064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [791] = { + [STATE(791)] = { [sym__type_parens] = STATE(6361), [sym__type_tuple] = STATE(6363), [sym__type_unboxed_tuple] = STATE(6364), @@ -129701,7 +130164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [792] = { + [STATE(792)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -129801,7 +130264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [793] = { + [STATE(793)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -129901,7 +130364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [794] = { + [STATE(794)] = { [sym__type_parens] = STATE(6361), [sym__type_tuple] = STATE(6363), [sym__type_unboxed_tuple] = STATE(6364), @@ -130001,7 +130464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [795] = { + [STATE(795)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -130101,7 +130564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [796] = { + [STATE(796)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -130201,7 +130664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [797] = { + [STATE(797)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -130301,7 +130764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [798] = { + [STATE(798)] = { [sym__type_parens] = STATE(6254), [sym__type_tuple] = STATE(6255), [sym__type_unboxed_tuple] = STATE(6256), @@ -130401,7 +130864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [799] = { + [STATE(799)] = { [sym__type_parens] = STATE(6254), [sym__type_tuple] = STATE(6255), [sym__type_unboxed_tuple] = STATE(6256), @@ -130501,7 +130964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [800] = { + [STATE(800)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -130601,7 +131064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [801] = { + [STATE(801)] = { [sym__type_parens] = STATE(6304), [sym__type_tuple] = STATE(6305), [sym__type_unboxed_tuple] = STATE(6306), @@ -130701,7 +131164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [802] = { + [STATE(802)] = { [sym__type_parens] = STATE(6254), [sym__type_tuple] = STATE(6255), [sym__type_unboxed_tuple] = STATE(6256), @@ -130801,7 +131264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [803] = { + [STATE(803)] = { [sym__type_parens] = STATE(6254), [sym__type_tuple] = STATE(6255), [sym__type_unboxed_tuple] = STATE(6256), @@ -130901,7 +131364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [804] = { + [STATE(804)] = { [sym__type_parens] = STATE(6374), [sym__type_tuple] = STATE(6375), [sym__type_unboxed_tuple] = STATE(6376), @@ -131001,7 +131464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [805] = { + [STATE(805)] = { [sym__type_parens] = STATE(6374), [sym__type_tuple] = STATE(6375), [sym__type_unboxed_tuple] = STATE(6376), @@ -131101,7 +131564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [806] = { + [STATE(806)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -131201,7 +131664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [807] = { + [STATE(807)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -131301,7 +131764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [808] = { + [STATE(808)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -131401,7 +131864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [809] = { + [STATE(809)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -131501,7 +131964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [810] = { + [STATE(810)] = { [sym__type_parens] = STATE(6304), [sym__type_tuple] = STATE(6305), [sym__type_unboxed_tuple] = STATE(6306), @@ -131601,7 +132064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [811] = { + [STATE(811)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -131701,7 +132164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [812] = { + [STATE(812)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -131801,7 +132264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [813] = { + [STATE(813)] = { [sym__type_parens] = STATE(6304), [sym__type_tuple] = STATE(6305), [sym__type_unboxed_tuple] = STATE(6306), @@ -131901,7 +132364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [814] = { + [STATE(814)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -132001,7 +132464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [815] = { + [STATE(815)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -132101,7 +132564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [816] = { + [STATE(816)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -132201,7 +132664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [817] = { + [STATE(817)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -132301,7 +132764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [818] = { + [STATE(818)] = { [sym__type_parens] = STATE(6374), [sym__type_tuple] = STATE(6375), [sym__type_unboxed_tuple] = STATE(6376), @@ -132401,7 +132864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [819] = { + [STATE(819)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -132501,7 +132964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [820] = { + [STATE(820)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -132601,7 +133064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [821] = { + [STATE(821)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -132701,7 +133164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [822] = { + [STATE(822)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -132801,7 +133264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [823] = { + [STATE(823)] = { [sym__type_parens] = STATE(6254), [sym__type_tuple] = STATE(6255), [sym__type_unboxed_tuple] = STATE(6256), @@ -132901,7 +133364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [824] = { + [STATE(824)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -133001,7 +133464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [825] = { + [STATE(825)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -133101,7 +133564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [826] = { + [STATE(826)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -133201,7 +133664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [827] = { + [STATE(827)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -133301,7 +133764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [828] = { + [STATE(828)] = { [sym__type_parens] = STATE(6374), [sym__type_tuple] = STATE(6375), [sym__type_unboxed_tuple] = STATE(6376), @@ -133401,7 +133864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [829] = { + [STATE(829)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -133501,7 +133964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [830] = { + [STATE(830)] = { [sym__type_parens] = STATE(6304), [sym__type_tuple] = STATE(6305), [sym__type_unboxed_tuple] = STATE(6306), @@ -133601,7 +134064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [831] = { + [STATE(831)] = { [sym__type_parens] = STATE(6304), [sym__type_tuple] = STATE(6305), [sym__type_unboxed_tuple] = STATE(6306), @@ -133701,7 +134164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [832] = { + [STATE(832)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -133801,7 +134264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [833] = { + [STATE(833)] = { [sym__type_parens] = STATE(6627), [sym__type_tuple] = STATE(6631), [sym__type_unboxed_tuple] = STATE(6632), @@ -133900,7 +134363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [834] = { + [STATE(834)] = { [sym__type_parens] = STATE(6627), [sym__type_tuple] = STATE(6631), [sym__type_unboxed_tuple] = STATE(6632), @@ -133999,7 +134462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [835] = { + [STATE(835)] = { [sym__type_parens] = STATE(6627), [sym__type_tuple] = STATE(6631), [sym__type_unboxed_tuple] = STATE(6632), @@ -134098,7 +134561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [836] = { + [STATE(836)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple_elems] = STATE(12154), [sym__type_tuple] = STATE(3895), @@ -134197,7 +134660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(1407), [sym__consym] = ACTIONS(257), }, - [837] = { + [STATE(837)] = { [sym__type_parens] = STATE(6627), [sym__type_tuple] = STATE(6631), [sym__type_unboxed_tuple] = STATE(6632), @@ -134296,7 +134759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [838] = { + [STATE(838)] = { [sym__type_parens] = STATE(6627), [sym__type_tuple] = STATE(6631), [sym__type_unboxed_tuple] = STATE(6632), @@ -134395,7 +134858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [839] = { + [STATE(839)] = { [sym__type_parens] = STATE(6627), [sym__type_tuple] = STATE(6631), [sym__type_unboxed_tuple] = STATE(6632), @@ -134494,7 +134957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [840] = { + [STATE(840)] = { [sym__type_parens] = STATE(6627), [sym__type_tuple] = STATE(6631), [sym__type_unboxed_tuple] = STATE(6632), @@ -134593,7 +135056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [841] = { + [STATE(841)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -134691,7 +135154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [842] = { + [STATE(842)] = { [sym__type_parens] = STATE(6715), [sym__type_tuple] = STATE(6716), [sym__type_unboxed_tuple] = STATE(6719), @@ -134789,7 +135252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [843] = { + [STATE(843)] = { [sym__type_parens] = STATE(6715), [sym__type_tuple] = STATE(6716), [sym__type_unboxed_tuple] = STATE(6719), @@ -134887,7 +135350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [844] = { + [STATE(844)] = { [sym__type_parens] = STATE(6715), [sym__type_tuple] = STATE(6716), [sym__type_unboxed_tuple] = STATE(6719), @@ -134985,7 +135448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [845] = { + [STATE(845)] = { [sym__type_parens] = STATE(6715), [sym__type_tuple] = STATE(6716), [sym__type_unboxed_tuple] = STATE(6719), @@ -135083,7 +135546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [846] = { + [STATE(846)] = { [sym__type_parens] = STATE(6715), [sym__type_tuple] = STATE(6716), [sym__type_unboxed_tuple] = STATE(6719), @@ -135181,7 +135644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [847] = { + [STATE(847)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -135279,7 +135742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [848] = { + [STATE(848)] = { [sym__type_parens] = STATE(6801), [sym__type_tuple] = STATE(6802), [sym__type_unboxed_tuple] = STATE(6803), @@ -135377,7 +135840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [849] = { + [STATE(849)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -135475,7 +135938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [850] = { + [STATE(850)] = { [sym__type_parens] = STATE(6801), [sym__type_tuple] = STATE(6802), [sym__type_unboxed_tuple] = STATE(6803), @@ -135573,7 +136036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [851] = { + [STATE(851)] = { [sym__type_parens] = STATE(6801), [sym__type_tuple] = STATE(6802), [sym__type_unboxed_tuple] = STATE(6803), @@ -135671,7 +136134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [852] = { + [STATE(852)] = { [sym__type_parens] = STATE(6801), [sym__type_tuple] = STATE(6802), [sym__type_unboxed_tuple] = STATE(6803), @@ -135769,7 +136232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [853] = { + [STATE(853)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -135867,7 +136330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [854] = { + [STATE(854)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -135965,7 +136428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [855] = { + [STATE(855)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -136063,7 +136526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [856] = { + [STATE(856)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -136161,7 +136624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [857] = { + [STATE(857)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -136259,7 +136722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [858] = { + [STATE(858)] = { [sym__type_parens] = STATE(6801), [sym__type_tuple] = STATE(6802), [sym__type_unboxed_tuple] = STATE(6803), @@ -136357,7 +136820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [859] = { + [STATE(859)] = { [sym__type_parens] = STATE(6801), [sym__type_tuple] = STATE(6802), [sym__type_unboxed_tuple] = STATE(6803), @@ -136455,7 +136918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [860] = { + [STATE(860)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -136553,7 +137016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [861] = { + [STATE(861)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -136651,7 +137114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [862] = { + [STATE(862)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -136749,7 +137212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [863] = { + [STATE(863)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -136847,7 +137310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [864] = { + [STATE(864)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -136945,7 +137408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [865] = { + [STATE(865)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -137043,7 +137506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [866] = { + [STATE(866)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -137141,7 +137604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [867] = { + [STATE(867)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -137239,7 +137702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [868] = { + [STATE(868)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -137337,7 +137800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [869] = { + [STATE(869)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -137435,7 +137898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [870] = { + [STATE(870)] = { [sym__type_parens] = STATE(6715), [sym__type_tuple] = STATE(6716), [sym__type_unboxed_tuple] = STATE(6719), @@ -137533,7 +137996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [871] = { + [STATE(871)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -137630,7 +138093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [872] = { + [STATE(872)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -137727,7 +138190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [873] = { + [STATE(873)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -137824,7 +138287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [874] = { + [STATE(874)] = { [sym__type_parens] = STATE(7006), [sym__type_tuple] = STATE(6850), [sym__type_unboxed_tuple] = STATE(6852), @@ -137921,7 +138384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [875] = { + [STATE(875)] = { [sym__type_parens] = STATE(6997), [sym__type_tuple] = STATE(6998), [sym__type_unboxed_tuple] = STATE(6999), @@ -138018,7 +138481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [876] = { + [STATE(876)] = { [sym__type_parens] = STATE(6997), [sym__type_tuple] = STATE(6998), [sym__type_unboxed_tuple] = STATE(6999), @@ -138115,7 +138578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [877] = { + [STATE(877)] = { [sym__type_parens] = STATE(6913), [sym__type_tuple] = STATE(6914), [sym__type_unboxed_tuple] = STATE(6915), @@ -138212,7 +138675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [878] = { + [STATE(878)] = { [sym__type_parens] = STATE(6997), [sym__type_tuple] = STATE(6998), [sym__type_unboxed_tuple] = STATE(6999), @@ -138309,7 +138772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [879] = { + [STATE(879)] = { [sym__type_parens] = STATE(7006), [sym__type_tuple] = STATE(6850), [sym__type_unboxed_tuple] = STATE(6852), @@ -138406,7 +138869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [880] = { + [STATE(880)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -138503,7 +138966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [881] = { + [STATE(881)] = { [sym__type_parens] = STATE(6913), [sym__type_tuple] = STATE(6914), [sym__type_unboxed_tuple] = STATE(6915), @@ -138600,7 +139063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [882] = { + [STATE(882)] = { [sym__type_parens] = STATE(6913), [sym__type_tuple] = STATE(6914), [sym__type_unboxed_tuple] = STATE(6915), @@ -138697,7 +139160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [883] = { + [STATE(883)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -138794,7 +139257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [884] = { + [STATE(884)] = { [sym__type_parens] = STATE(7006), [sym__type_tuple] = STATE(6850), [sym__type_unboxed_tuple] = STATE(6852), @@ -138891,7 +139354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [885] = { + [STATE(885)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -138988,7 +139451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [886] = { + [STATE(886)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -139085,7 +139548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [887] = { + [STATE(887)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -139182,7 +139645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [888] = { + [STATE(888)] = { [sym__type_parens] = STATE(6913), [sym__type_tuple] = STATE(6914), [sym__type_unboxed_tuple] = STATE(6915), @@ -139279,7 +139742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [889] = { + [STATE(889)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -139376,7 +139839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [890] = { + [STATE(890)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -139473,7 +139936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [891] = { + [STATE(891)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -139570,7 +140033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [892] = { + [STATE(892)] = { [sym__type_parens] = STATE(6913), [sym__type_tuple] = STATE(6914), [sym__type_unboxed_tuple] = STATE(6915), @@ -139667,7 +140130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [893] = { + [STATE(893)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -139764,7 +140227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [894] = { + [STATE(894)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -139861,7 +140324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [895] = { + [STATE(895)] = { [sym__type_parens] = STATE(7006), [sym__type_tuple] = STATE(6850), [sym__type_unboxed_tuple] = STATE(6852), @@ -139958,7 +140421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [896] = { + [STATE(896)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -140055,7 +140518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [897] = { + [STATE(897)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -140152,7 +140615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [898] = { + [STATE(898)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -140249,7 +140712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [899] = { + [STATE(899)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -140346,7 +140809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [900] = { + [STATE(900)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -140443,7 +140906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [901] = { + [STATE(901)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -140540,7 +141003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [902] = { + [STATE(902)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -140637,7 +141100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [903] = { + [STATE(903)] = { [sym__type_parens] = STATE(7006), [sym__type_tuple] = STATE(6850), [sym__type_unboxed_tuple] = STATE(6852), @@ -140734,7 +141197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [904] = { + [STATE(904)] = { [sym__type_parens] = STATE(6997), [sym__type_tuple] = STATE(6998), [sym__type_unboxed_tuple] = STATE(6999), @@ -140831,7 +141294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [905] = { + [STATE(905)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -140928,7 +141391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [906] = { + [STATE(906)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -141025,7 +141488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [907] = { + [STATE(907)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -141122,7 +141585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [908] = { + [STATE(908)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -141219,7 +141682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [909] = { + [STATE(909)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -141316,7 +141779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [910] = { + [STATE(910)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -141413,7 +141876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [911] = { + [STATE(911)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -141510,7 +141973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [912] = { + [STATE(912)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -141607,7 +142070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [913] = { + [STATE(913)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -141704,7 +142167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [914] = { + [STATE(914)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -141801,7 +142264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [915] = { + [STATE(915)] = { [sym__at_type] = STATE(6660), [sym_explicit_type] = STATE(6661), [sym__pat_parens] = STATE(6596), @@ -141898,7 +142361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(2731), [sym__consym] = ACTIONS(2751), }, - [916] = { + [STATE(916)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -141995,7 +142458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [917] = { + [STATE(917)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -142092,7 +142555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [918] = { + [STATE(918)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -142189,7 +142652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [919] = { + [STATE(919)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -142286,7 +142749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [920] = { + [STATE(920)] = { [sym__type_parens] = STATE(7006), [sym__type_tuple] = STATE(6850), [sym__type_unboxed_tuple] = STATE(6852), @@ -142383,7 +142846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [921] = { + [STATE(921)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -142480,7 +142943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [922] = { + [STATE(922)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -142577,7 +143040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [923] = { + [STATE(923)] = { [sym__type_parens] = STATE(6997), [sym__type_tuple] = STATE(6998), [sym__type_unboxed_tuple] = STATE(6999), @@ -142674,7 +143137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [924] = { + [STATE(924)] = { [sym__type_parens] = STATE(6997), [sym__type_tuple] = STATE(6998), [sym__type_unboxed_tuple] = STATE(6999), @@ -142771,7 +143234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [925] = { + [STATE(925)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -142868,7 +143331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [926] = { + [STATE(926)] = { [sym__type_parens] = STATE(6913), [sym__type_tuple] = STATE(6914), [sym__type_unboxed_tuple] = STATE(6915), @@ -142965,7 +143428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [927] = { + [STATE(927)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -143062,7 +143525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [928] = { + [STATE(928)] = { [sym__type_parens] = STATE(7080), [sym__type_tuple] = STATE(7081), [sym__type_unboxed_tuple] = STATE(7082), @@ -143158,7 +143621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [929] = { + [STATE(929)] = { [sym__type_parens] = STATE(7080), [sym__type_tuple] = STATE(7081), [sym__type_unboxed_tuple] = STATE(7082), @@ -143254,7 +143717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [930] = { + [STATE(930)] = { [sym__type_parens] = STATE(7080), [sym__type_tuple] = STATE(7081), [sym__type_unboxed_tuple] = STATE(7082), @@ -143350,7 +143813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [931] = { + [STATE(931)] = { [sym__type_parens] = STATE(7080), [sym__type_tuple] = STATE(7081), [sym__type_unboxed_tuple] = STATE(7082), @@ -143446,7 +143909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [932] = { + [STATE(932)] = { [sym__type_parens] = STATE(7080), [sym__type_tuple] = STATE(7081), [sym__type_unboxed_tuple] = STATE(7082), @@ -143542,7 +144005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [933] = { + [STATE(933)] = { [sym__type_parens] = STATE(7080), [sym__type_tuple] = STATE(7081), [sym__type_unboxed_tuple] = STATE(7082), @@ -143638,7 +144101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [934] = { + [STATE(934)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -143734,7 +144197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [935] = { + [STATE(935)] = { [sym__type_parens] = STATE(7201), [sym__type_tuple] = STATE(7023), [sym__type_unboxed_tuple] = STATE(7039), @@ -143830,7 +144293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [936] = { + [STATE(936)] = { [sym__type_parens] = STATE(7080), [sym__type_tuple] = STATE(7081), [sym__type_unboxed_tuple] = STATE(7082), @@ -143926,7 +144389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [937] = { + [STATE(937)] = { [sym__type_parens] = STATE(7080), [sym__type_tuple] = STATE(7081), [sym__type_unboxed_tuple] = STATE(7082), @@ -144022,7 +144485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [938] = { + [STATE(938)] = { [sym__at_type] = STATE(6810), [sym_explicit_type] = STATE(6811), [sym__pat_parens] = STATE(6781), @@ -144118,7 +144581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(2731), [sym__consym] = ACTIONS(2751), }, - [939] = { + [STATE(939)] = { [sym__type_parens] = STATE(7201), [sym__type_tuple] = STATE(7023), [sym__type_unboxed_tuple] = STATE(7039), @@ -144214,7 +144677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [940] = { + [STATE(940)] = { [sym__type_parens] = STATE(7201), [sym__type_tuple] = STATE(7023), [sym__type_unboxed_tuple] = STATE(7039), @@ -144310,7 +144773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [941] = { + [STATE(941)] = { [sym__type_parens] = STATE(7201), [sym__type_tuple] = STATE(7023), [sym__type_unboxed_tuple] = STATE(7039), @@ -144406,7 +144869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [942] = { + [STATE(942)] = { [sym__type_parens] = STATE(7201), [sym__type_tuple] = STATE(7023), [sym__type_unboxed_tuple] = STATE(7039), @@ -144502,7 +144965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [943] = { + [STATE(943)] = { [sym__type_parens] = STATE(7201), [sym__type_tuple] = STATE(7023), [sym__type_unboxed_tuple] = STATE(7039), @@ -144598,7 +145061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [944] = { + [STATE(944)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -144694,7 +145157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [945] = { + [STATE(945)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -144790,7 +145253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [946] = { + [STATE(946)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -144886,7 +145349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [947] = { + [STATE(947)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -144982,7 +145445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [948] = { + [STATE(948)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -145078,7 +145541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [949] = { + [STATE(949)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -145174,7 +145637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [950] = { + [STATE(950)] = { [sym__type_parens] = STATE(7080), [sym__type_tuple] = STATE(7081), [sym__type_unboxed_tuple] = STATE(7082), @@ -145270,7 +145733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [951] = { + [STATE(951)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -145365,7 +145828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [952] = { + [STATE(952)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -145460,7 +145923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [953] = { + [STATE(953)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -145555,7 +146018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [954] = { + [STATE(954)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -145650,7 +146113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [955] = { + [STATE(955)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -145745,7 +146208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [956] = { + [STATE(956)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -145840,7 +146303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [957] = { + [STATE(957)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -145935,7 +146398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [958] = { + [STATE(958)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -146030,7 +146493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [959] = { + [STATE(959)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -146125,7 +146588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [960] = { + [STATE(960)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -146220,7 +146683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [961] = { + [STATE(961)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -146315,7 +146778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [962] = { + [STATE(962)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -146410,7 +146873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [963] = { + [STATE(963)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -146505,7 +146968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [964] = { + [STATE(964)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -146600,7 +147063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [965] = { + [STATE(965)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -146695,7 +147158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [966] = { + [STATE(966)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -146790,7 +147253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [967] = { + [STATE(967)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -146885,7 +147348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [968] = { + [STATE(968)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -146980,7 +147443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [969] = { + [STATE(969)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -147075,7 +147538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [970] = { + [STATE(970)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -147170,7 +147633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [971] = { + [STATE(971)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -147265,7 +147728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [972] = { + [STATE(972)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -147360,7 +147823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [973] = { + [STATE(973)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -147455,7 +147918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [974] = { + [STATE(974)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -147550,7 +148013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [975] = { + [STATE(975)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -147645,7 +148108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [976] = { + [STATE(976)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -147740,7 +148203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [977] = { + [STATE(977)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -147835,7 +148298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [978] = { + [STATE(978)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -147930,7 +148393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [979] = { + [STATE(979)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -148025,7 +148488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [980] = { + [STATE(980)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -148120,7 +148583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [981] = { + [STATE(981)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -148215,7 +148678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [982] = { + [STATE(982)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -148310,7 +148773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [983] = { + [STATE(983)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -148405,7 +148868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [984] = { + [STATE(984)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -148500,7 +148963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [985] = { + [STATE(985)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -148595,7 +149058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [986] = { + [STATE(986)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -148690,7 +149153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [987] = { + [STATE(987)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -148785,7 +149248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [988] = { + [STATE(988)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -148880,7 +149343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [989] = { + [STATE(989)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -148975,7 +149438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [990] = { + [STATE(990)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -149070,7 +149533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [991] = { + [STATE(991)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -149165,7 +149628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [992] = { + [STATE(992)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -149260,7 +149723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [993] = { + [STATE(993)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -149355,7 +149818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [994] = { + [STATE(994)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -149450,7 +149913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [995] = { + [STATE(995)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -149545,7 +150008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [996] = { + [STATE(996)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -149640,7 +150103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [997] = { + [STATE(997)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -149735,7 +150198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [998] = { + [STATE(998)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -149830,7 +150293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [999] = { + [STATE(999)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -149925,7 +150388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(2867), [sym__consym] = ACTIONS(2867), }, - [1000] = { + [STATE(1000)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -150020,7 +150483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(2873), [sym__consym] = ACTIONS(2873), }, - [1001] = { + [STATE(1001)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -150115,7 +150578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1002] = { + [STATE(1002)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -150210,7 +150673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(2879), [sym__consym] = ACTIONS(2879), }, - [1003] = { + [STATE(1003)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -150305,7 +150768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1004] = { + [STATE(1004)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -150400,7 +150863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1005] = { + [STATE(1005)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -150495,7 +150958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1006] = { + [STATE(1006)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -150590,7 +151053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1007] = { + [STATE(1007)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -150685,7 +151148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [1008] = { + [STATE(1008)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -150780,7 +151243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1009] = { + [STATE(1009)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -150875,7 +151338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1010] = { + [STATE(1010)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -150970,7 +151433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1011] = { + [STATE(1011)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -151065,7 +151528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1012] = { + [STATE(1012)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -151160,7 +151623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1013] = { + [STATE(1013)] = { [sym__type_parens] = STATE(7289), [sym__type_tuple] = STATE(7290), [sym__type_unboxed_tuple] = STATE(7291), @@ -151255,7 +151718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1014] = { + [STATE(1014)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -151350,7 +151813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1015] = { + [STATE(1015)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -151445,7 +151908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1016] = { + [STATE(1016)] = { [sym__type_parens] = STATE(7289), [sym__type_tuple] = STATE(7290), [sym__type_unboxed_tuple] = STATE(7291), @@ -151540,7 +152003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1017] = { + [STATE(1017)] = { [sym__type_parens] = STATE(7289), [sym__type_tuple] = STATE(7290), [sym__type_unboxed_tuple] = STATE(7291), @@ -151635,7 +152098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1018] = { + [STATE(1018)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -151730,7 +152193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1019] = { + [STATE(1019)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -151825,7 +152288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1020] = { + [STATE(1020)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -151920,7 +152383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1021] = { + [STATE(1021)] = { [sym__type_parens] = STATE(7289), [sym__type_tuple] = STATE(7290), [sym__type_unboxed_tuple] = STATE(7291), @@ -152015,7 +152478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1022] = { + [STATE(1022)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -152110,7 +152573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1023] = { + [STATE(1023)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -152205,7 +152668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1024] = { + [STATE(1024)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -152300,7 +152763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [1025] = { + [STATE(1025)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -152395,7 +152858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1026] = { + [STATE(1026)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -152490,7 +152953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1027] = { + [STATE(1027)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -152585,7 +153048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1028] = { + [STATE(1028)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -152680,7 +153143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1029] = { + [STATE(1029)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -152775,7 +153238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1030] = { + [STATE(1030)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -152870,7 +153333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1031] = { + [STATE(1031)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -152965,7 +153428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1032] = { + [STATE(1032)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -153060,7 +153523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1033] = { + [STATE(1033)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -153155,7 +153618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1034] = { + [STATE(1034)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -153250,7 +153713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1035] = { + [STATE(1035)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -153345,7 +153808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1036] = { + [STATE(1036)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -153440,7 +153903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1037] = { + [STATE(1037)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -153535,7 +153998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1038] = { + [STATE(1038)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -153630,7 +154093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1039] = { + [STATE(1039)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -153725,7 +154188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1040] = { + [STATE(1040)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -153820,7 +154283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1041] = { + [STATE(1041)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -153915,7 +154378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1042] = { + [STATE(1042)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -154010,7 +154473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1043] = { + [STATE(1043)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -154105,7 +154568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1044] = { + [STATE(1044)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -154200,7 +154663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1045] = { + [STATE(1045)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -154295,7 +154758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(2965), [sym__consym] = ACTIONS(2965), }, - [1046] = { + [STATE(1046)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -154390,7 +154853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1047] = { + [STATE(1047)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -154485,7 +154948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1048] = { + [STATE(1048)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -154580,7 +155043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1049] = { + [STATE(1049)] = { [sym__type_parens] = STATE(7451), [sym__type_tuple] = STATE(7452), [sym__type_unboxed_tuple] = STATE(7453), @@ -154675,7 +155138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1050] = { + [STATE(1050)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -154770,7 +155233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1051] = { + [STATE(1051)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -154865,7 +155328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1052] = { + [STATE(1052)] = { [sym__type_parens] = STATE(7289), [sym__type_tuple] = STATE(7290), [sym__type_unboxed_tuple] = STATE(7291), @@ -154960,7 +155423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [1053] = { + [STATE(1053)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -155055,7 +155518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1054] = { + [STATE(1054)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -155150,7 +155613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1055] = { + [STATE(1055)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -155245,7 +155708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1056] = { + [STATE(1056)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -155340,7 +155803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1057] = { + [STATE(1057)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -155435,7 +155898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1058] = { + [STATE(1058)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -155530,7 +155993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1059] = { + [STATE(1059)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -155625,7 +156088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3021), [sym__consym] = ACTIONS(2751), }, - [1060] = { + [STATE(1060)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -155720,7 +156183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1061] = { + [STATE(1061)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -155815,7 +156278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1062] = { + [STATE(1062)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -155910,7 +156373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1063] = { + [STATE(1063)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -156005,7 +156468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1064] = { + [STATE(1064)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -156100,7 +156563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1065] = { + [STATE(1065)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -156195,7 +156658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1066] = { + [STATE(1066)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -156290,7 +156753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1067] = { + [STATE(1067)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -156385,7 +156848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1068] = { + [STATE(1068)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -156480,7 +156943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1069] = { + [STATE(1069)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -156575,7 +157038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1070] = { + [STATE(1070)] = { [sym__type_parens] = STATE(7289), [sym__type_tuple] = STATE(7290), [sym__type_unboxed_tuple] = STATE(7291), @@ -156670,7 +157133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [1071] = { + [STATE(1071)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -156765,7 +157228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1072] = { + [STATE(1072)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -156860,7 +157323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1073] = { + [STATE(1073)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -156955,7 +157418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1074] = { + [STATE(1074)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -157050,7 +157513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1075] = { + [STATE(1075)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -157145,7 +157608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1076] = { + [STATE(1076)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -157240,7 +157703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1077] = { + [STATE(1077)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -157335,7 +157798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1078] = { + [STATE(1078)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -157430,7 +157893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1079] = { + [STATE(1079)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -157525,7 +157988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1080] = { + [STATE(1080)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -157620,7 +158083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1081] = { + [STATE(1081)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -157715,7 +158178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1082] = { + [STATE(1082)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -157810,7 +158273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1083] = { + [STATE(1083)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -157905,7 +158368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1084] = { + [STATE(1084)] = { [sym__type_parens] = STATE(7451), [sym__type_tuple] = STATE(7452), [sym__type_unboxed_tuple] = STATE(7453), @@ -158000,7 +158463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1085] = { + [STATE(1085)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -158095,7 +158558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1086] = { + [STATE(1086)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -158190,7 +158653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1087] = { + [STATE(1087)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -158285,7 +158748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1088] = { + [STATE(1088)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -158380,7 +158843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1089] = { + [STATE(1089)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -158475,7 +158938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3021), [sym__consym] = ACTIONS(2751), }, - [1090] = { + [STATE(1090)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -158570,7 +159033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1091] = { + [STATE(1091)] = { [sym__type_parens] = STATE(7451), [sym__type_tuple] = STATE(7452), [sym__type_unboxed_tuple] = STATE(7453), @@ -158665,7 +159128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1092] = { + [STATE(1092)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -158760,7 +159223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1093] = { + [STATE(1093)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -158855,7 +159318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1094] = { + [STATE(1094)] = { [sym__type_parens] = STATE(7451), [sym__type_tuple] = STATE(7452), [sym__type_unboxed_tuple] = STATE(7453), @@ -158950,7 +159413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [1095] = { + [STATE(1095)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -159045,7 +159508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1096] = { + [STATE(1096)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -159140,7 +159603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1097] = { + [STATE(1097)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -159235,7 +159698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1098] = { + [STATE(1098)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -159330,7 +159793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1099] = { + [STATE(1099)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -159425,7 +159888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1100] = { + [STATE(1100)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -159520,7 +159983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1101] = { + [STATE(1101)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -159615,7 +160078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1102] = { + [STATE(1102)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -159710,7 +160173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1103] = { + [STATE(1103)] = { [sym__type_parens] = STATE(7451), [sym__type_tuple] = STATE(7452), [sym__type_unboxed_tuple] = STATE(7453), @@ -159805,7 +160268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1104] = { + [STATE(1104)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -159900,7 +160363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1105] = { + [STATE(1105)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -159995,7 +160458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1106] = { + [STATE(1106)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -160090,7 +160553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1107] = { + [STATE(1107)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -160185,7 +160648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1108] = { + [STATE(1108)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -160280,7 +160743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1109] = { + [STATE(1109)] = { [sym__type_parens] = STATE(7451), [sym__type_tuple] = STATE(7452), [sym__type_unboxed_tuple] = STATE(7453), @@ -160375,7 +160838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1110] = { + [STATE(1110)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -160470,7 +160933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1111] = { + [STATE(1111)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -160565,7 +161028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1112] = { + [STATE(1112)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -160660,7 +161123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1113] = { + [STATE(1113)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -160755,7 +161218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1114] = { + [STATE(1114)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -160850,7 +161313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1115] = { + [STATE(1115)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -160945,7 +161408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1116] = { + [STATE(1116)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -161040,7 +161503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1117] = { + [STATE(1117)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -161135,7 +161598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1118] = { + [STATE(1118)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -161230,7 +161693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1119] = { + [STATE(1119)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -161325,7 +161788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1120] = { + [STATE(1120)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -161420,7 +161883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1121] = { + [STATE(1121)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -161515,7 +161978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1122] = { + [STATE(1122)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -161610,7 +162073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1123] = { + [STATE(1123)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -161705,7 +162168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1124] = { + [STATE(1124)] = { [sym__type_parens] = STATE(7451), [sym__type_tuple] = STATE(7452), [sym__type_unboxed_tuple] = STATE(7453), @@ -161800,7 +162263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [1125] = { + [STATE(1125)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -161895,7 +162358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3021), [sym__consym] = ACTIONS(2751), }, - [1126] = { + [STATE(1126)] = { [sym__type_parens] = STATE(7451), [sym__type_tuple] = STATE(7452), [sym__type_unboxed_tuple] = STATE(7453), @@ -161990,7 +162453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1127] = { + [STATE(1127)] = { [sym__type_parens] = STATE(7451), [sym__type_tuple] = STATE(7452), [sym__type_unboxed_tuple] = STATE(7453), @@ -162085,7 +162548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1128] = { + [STATE(1128)] = { [sym__type_parens] = STATE(7451), [sym__type_tuple] = STATE(7452), [sym__type_unboxed_tuple] = STATE(7453), @@ -162180,7 +162643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1129] = { + [STATE(1129)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -162275,7 +162738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3021), [sym__consym] = ACTIONS(2751), }, - [1130] = { + [STATE(1130)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -162370,7 +162833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1131] = { + [STATE(1131)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -162465,7 +162928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1132] = { + [STATE(1132)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -162559,7 +163022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1133] = { + [STATE(1133)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -162653,7 +163116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1134] = { + [STATE(1134)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -162747,7 +163210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1135] = { + [STATE(1135)] = { [sym__type_parens] = STATE(7502), [sym__type_tuple] = STATE(7513), [sym__type_unboxed_tuple] = STATE(7515), @@ -162841,7 +163304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [1136] = { + [STATE(1136)] = { [sym__type_parens] = STATE(7451), [sym__type_tuple] = STATE(7452), [sym__type_unboxed_tuple] = STATE(7453), @@ -162935,7 +163398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1137] = { + [STATE(1137)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -163029,7 +163492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1138] = { + [STATE(1138)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -163123,7 +163586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1139] = { + [STATE(1139)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -163217,7 +163680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1140] = { + [STATE(1140)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -163311,7 +163774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1141] = { + [STATE(1141)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -163405,7 +163868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1142] = { + [STATE(1142)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -163499,7 +163962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1143] = { + [STATE(1143)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -163593,7 +164056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1144] = { + [STATE(1144)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -163687,7 +164150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1145] = { + [STATE(1145)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -163781,7 +164244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1146] = { + [STATE(1146)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -163875,7 +164338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1147] = { + [STATE(1147)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -163969,7 +164432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1148] = { + [STATE(1148)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -164063,7 +164526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1149] = { + [STATE(1149)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -164157,7 +164620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1150] = { + [STATE(1150)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -164251,7 +164714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1151] = { + [STATE(1151)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -164345,7 +164808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1152] = { + [STATE(1152)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -164439,7 +164902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1153] = { + [STATE(1153)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -164533,7 +164996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1154] = { + [STATE(1154)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -164627,7 +165090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1155] = { + [STATE(1155)] = { [sym__type_parens] = STATE(7502), [sym__type_tuple] = STATE(7513), [sym__type_unboxed_tuple] = STATE(7515), @@ -164721,7 +165184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1156] = { + [STATE(1156)] = { [sym__type_parens] = STATE(7502), [sym__type_tuple] = STATE(7513), [sym__type_unboxed_tuple] = STATE(7515), @@ -164815,7 +165278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1157] = { + [STATE(1157)] = { [sym__type_parens] = STATE(7502), [sym__type_tuple] = STATE(7513), [sym__type_unboxed_tuple] = STATE(7515), @@ -164909,7 +165372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1158] = { + [STATE(1158)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -165003,7 +165466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1159] = { + [STATE(1159)] = { [sym__type_parens] = STATE(7502), [sym__type_tuple] = STATE(7513), [sym__type_unboxed_tuple] = STATE(7515), @@ -165097,7 +165560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1160] = { + [STATE(1160)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -165191,7 +165654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1161] = { + [STATE(1161)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -165285,7 +165748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1162] = { + [STATE(1162)] = { [sym__type_parens] = STATE(7502), [sym__type_tuple] = STATE(7513), [sym__type_unboxed_tuple] = STATE(7515), @@ -165379,7 +165842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [1163] = { + [STATE(1163)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -165473,7 +165936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1164] = { + [STATE(1164)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -165567,7 +166030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1165] = { + [STATE(1165)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -165661,7 +166124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1166] = { + [STATE(1166)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -165755,7 +166218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1167] = { + [STATE(1167)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -165849,7 +166312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1168] = { + [STATE(1168)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -165943,7 +166406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1169] = { + [STATE(1169)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -166037,7 +166500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1170] = { + [STATE(1170)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -166131,7 +166594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1171] = { + [STATE(1171)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -166225,7 +166688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1172] = { + [STATE(1172)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -166319,7 +166782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1173] = { + [STATE(1173)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -166413,7 +166876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1174] = { + [STATE(1174)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -166507,7 +166970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1175] = { + [STATE(1175)] = { [sym__type_parens] = STATE(7502), [sym__type_tuple] = STATE(7513), [sym__type_unboxed_tuple] = STATE(7515), @@ -166601,7 +167064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1176] = { + [STATE(1176)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -166695,7 +167158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1177] = { + [STATE(1177)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -166789,7 +167252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1178] = { + [STATE(1178)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -166883,7 +167346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1179] = { + [STATE(1179)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -166977,7 +167440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1180] = { + [STATE(1180)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -167070,7 +167533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1181] = { + [STATE(1181)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -167163,7 +167626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1182] = { + [STATE(1182)] = { [sym__at_type] = STATE(6660), [sym_explicit_type] = STATE(6661), [sym__pat_parens] = STATE(6596), @@ -167256,7 +167719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(3099), [sym__consym] = ACTIONS(2751), }, - [1183] = { + [STATE(1183)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -167349,7 +167812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1184] = { + [STATE(1184)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -167442,7 +167905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1185] = { + [STATE(1185)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -167535,7 +167998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1186] = { + [STATE(1186)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -167628,7 +168091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1187] = { + [STATE(1187)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -167721,7 +168184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1188] = { + [STATE(1188)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -167814,7 +168277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1189] = { + [STATE(1189)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -167907,7 +168370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1190] = { + [STATE(1190)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -168000,7 +168463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1191] = { + [STATE(1191)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -168093,7 +168556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1192] = { + [STATE(1192)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -168186,7 +168649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1193] = { + [STATE(1193)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -168279,7 +168742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1194] = { + [STATE(1194)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -168372,7 +168835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1195] = { + [STATE(1195)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -168465,7 +168928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1196] = { + [STATE(1196)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -168558,7 +169021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1197] = { + [STATE(1197)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -168651,7 +169114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [1198] = { + [STATE(1198)] = { [sym__at_type] = STATE(6660), [sym_explicit_type] = STATE(6661), [sym__pat_parens] = STATE(6596), @@ -168744,7 +169207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(2873), [sym__consym] = ACTIONS(2873), }, - [1199] = { + [STATE(1199)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -168837,7 +169300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [1200] = { + [STATE(1200)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -168930,7 +169393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1201] = { + [STATE(1201)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -169023,7 +169486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1202] = { + [STATE(1202)] = { [sym__at_type] = STATE(6660), [sym_explicit_type] = STATE(6661), [sym__pat_parens] = STATE(6596), @@ -169116,7 +169579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(2867), [sym__consym] = ACTIONS(2867), }, - [1203] = { + [STATE(1203)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -169209,7 +169672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1204] = { + [STATE(1204)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -169302,7 +169765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1205] = { + [STATE(1205)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -169395,7 +169858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1206] = { + [STATE(1206)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -169488,7 +169951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1207] = { + [STATE(1207)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -169581,7 +170044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1208] = { + [STATE(1208)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -169674,7 +170137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1209] = { + [STATE(1209)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -169767,7 +170230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1210] = { + [STATE(1210)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -169860,7 +170323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1211] = { + [STATE(1211)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -169953,7 +170416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1212] = { + [STATE(1212)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -170046,7 +170509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1213] = { + [STATE(1213)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -170139,7 +170602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1214] = { + [STATE(1214)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -170232,7 +170695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1215] = { + [STATE(1215)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -170325,7 +170788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1216] = { + [STATE(1216)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -170418,7 +170881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1217] = { + [STATE(1217)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -170511,7 +170974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1218] = { + [STATE(1218)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -170604,7 +171067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1219] = { + [STATE(1219)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -170697,7 +171160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1220] = { + [STATE(1220)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -170790,7 +171253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1221] = { + [STATE(1221)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -170883,7 +171346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1222] = { + [STATE(1222)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -170976,7 +171439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1223] = { + [STATE(1223)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -171069,7 +171532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1224] = { + [STATE(1224)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -171162,7 +171625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1225] = { + [STATE(1225)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -171255,7 +171718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1226] = { + [STATE(1226)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -171348,7 +171811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1227] = { + [STATE(1227)] = { [sym__type_parens] = STATE(7563), [sym__type_tuple] = STATE(7568), [sym__type_unboxed_tuple] = STATE(7569), @@ -171441,7 +171904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1228] = { + [STATE(1228)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -171534,7 +171997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1229] = { + [STATE(1229)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -171627,7 +172090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1230] = { + [STATE(1230)] = { [sym__at_type] = STATE(6660), [sym_explicit_type] = STATE(6661), [sym__pat_parens] = STATE(6596), @@ -171720,7 +172183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(3101), [sym__consym] = ACTIONS(2751), }, - [1231] = { + [STATE(1231)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -171813,7 +172276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1232] = { + [STATE(1232)] = { [sym__at_type] = STATE(6660), [sym_explicit_type] = STATE(6661), [sym__pat_parens] = STATE(6596), @@ -171906,7 +172369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(3061), [sym__consym] = ACTIONS(2751), }, - [1233] = { + [STATE(1233)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -171999,7 +172462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1234] = { + [STATE(1234)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -172092,7 +172555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1235] = { + [STATE(1235)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -172185,7 +172648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1236] = { + [STATE(1236)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -172278,7 +172741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1237] = { + [STATE(1237)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -172371,7 +172834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1238] = { + [STATE(1238)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -172464,7 +172927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1239] = { + [STATE(1239)] = { [sym__type_parens] = STATE(7563), [sym__type_tuple] = STATE(7568), [sym__type_unboxed_tuple] = STATE(7569), @@ -172557,7 +173020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1240] = { + [STATE(1240)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -172650,7 +173113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1241] = { + [STATE(1241)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -172743,7 +173206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1242] = { + [STATE(1242)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -172836,7 +173299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [1243] = { + [STATE(1243)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -172929,7 +173392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1244] = { + [STATE(1244)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -173022,7 +173485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1245] = { + [STATE(1245)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -173115,7 +173578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1246] = { + [STATE(1246)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -173208,7 +173671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1247] = { + [STATE(1247)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -173301,7 +173764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1248] = { + [STATE(1248)] = { [sym__type_parens] = STATE(7563), [sym__type_tuple] = STATE(7568), [sym__type_unboxed_tuple] = STATE(7569), @@ -173394,7 +173857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1249] = { + [STATE(1249)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -173487,7 +173950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1250] = { + [STATE(1250)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -173580,7 +174043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1251] = { + [STATE(1251)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -173673,7 +174136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1252] = { + [STATE(1252)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -173766,7 +174229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1253] = { + [STATE(1253)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -173859,7 +174322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1254] = { + [STATE(1254)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -173952,7 +174415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [1255] = { + [STATE(1255)] = { [sym__at_type] = STATE(6660), [sym_explicit_type] = STATE(6661), [sym__pat_parens] = STATE(6596), @@ -174045,7 +174508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(3003), [sym__consym] = ACTIONS(2751), }, - [1256] = { + [STATE(1256)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -174138,7 +174601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1257] = { + [STATE(1257)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -174231,7 +174694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1258] = { + [STATE(1258)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -174324,7 +174787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1259] = { + [STATE(1259)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -174417,7 +174880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1260] = { + [STATE(1260)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -174510,7 +174973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1261] = { + [STATE(1261)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -174603,7 +175066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1262] = { + [STATE(1262)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -174696,7 +175159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1263] = { + [STATE(1263)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -174789,7 +175252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1264] = { + [STATE(1264)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -174882,7 +175345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1265] = { + [STATE(1265)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -174975,7 +175438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1266] = { + [STATE(1266)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -175068,7 +175531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1267] = { + [STATE(1267)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -175161,7 +175624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1268] = { + [STATE(1268)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -175254,7 +175717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1269] = { + [STATE(1269)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -175347,7 +175810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1270] = { + [STATE(1270)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -175440,7 +175903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1271] = { + [STATE(1271)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -175533,7 +175996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1272] = { + [STATE(1272)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -175626,7 +176089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [1273] = { + [STATE(1273)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -175719,7 +176182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1274] = { + [STATE(1274)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -175812,7 +176275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3021), [sym__consym] = ACTIONS(2751), }, - [1275] = { + [STATE(1275)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -175905,7 +176368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [1276] = { + [STATE(1276)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -175998,7 +176461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1277] = { + [STATE(1277)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -176091,7 +176554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [1278] = { + [STATE(1278)] = { [sym__type_parens] = STATE(7563), [sym__type_tuple] = STATE(7568), [sym__type_unboxed_tuple] = STATE(7569), @@ -176184,7 +176647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1279] = { + [STATE(1279)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -176277,7 +176740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1280] = { + [STATE(1280)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -176370,7 +176833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1281] = { + [STATE(1281)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -176463,7 +176926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1282] = { + [STATE(1282)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -176556,7 +177019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1283] = { + [STATE(1283)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -176649,7 +177112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1284] = { + [STATE(1284)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -176742,7 +177205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1285] = { + [STATE(1285)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -176835,7 +177298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1286] = { + [STATE(1286)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -176928,7 +177391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1287] = { + [STATE(1287)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -177021,7 +177484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1288] = { + [STATE(1288)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -177114,7 +177577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1289] = { + [STATE(1289)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -177207,7 +177670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1290] = { + [STATE(1290)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -177300,7 +177763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1291] = { + [STATE(1291)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -177393,7 +177856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1292] = { + [STATE(1292)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -177486,7 +177949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1293] = { + [STATE(1293)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -177579,7 +178042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1294] = { + [STATE(1294)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -177672,7 +178135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1295] = { + [STATE(1295)] = { [sym__type_parens] = STATE(7563), [sym__type_tuple] = STATE(7568), [sym__type_unboxed_tuple] = STATE(7569), @@ -177765,7 +178228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1296] = { + [STATE(1296)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -177858,7 +178321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1297] = { + [STATE(1297)] = { [sym__type_parens] = STATE(7563), [sym__type_tuple] = STATE(7568), [sym__type_unboxed_tuple] = STATE(7569), @@ -177951,7 +178414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [1298] = { + [STATE(1298)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -178044,7 +178507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1299] = { + [STATE(1299)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -178137,7 +178600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1300] = { + [STATE(1300)] = { [sym__at_type] = STATE(6660), [sym_explicit_type] = STATE(6661), [sym__pat_parens] = STATE(6596), @@ -178230,7 +178693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(2879), [sym__consym] = ACTIONS(2879), }, - [1301] = { + [STATE(1301)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -178323,7 +178786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1302] = { + [STATE(1302)] = { [sym__at_type] = STATE(6660), [sym_explicit_type] = STATE(6661), [sym__pat_parens] = STATE(6596), @@ -178416,7 +178879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(2965), [sym__consym] = ACTIONS(2965), }, - [1303] = { + [STATE(1303)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -178509,7 +178972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1304] = { + [STATE(1304)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -178602,7 +179065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1305] = { + [STATE(1305)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -178695,7 +179158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1306] = { + [STATE(1306)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -178788,7 +179251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1307] = { + [STATE(1307)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -178881,7 +179344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1308] = { + [STATE(1308)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -178974,7 +179437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1309] = { + [STATE(1309)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -179067,7 +179530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1310] = { + [STATE(1310)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -179160,7 +179623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1311] = { + [STATE(1311)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -179253,7 +179716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1312] = { + [STATE(1312)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -179346,7 +179809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1313] = { + [STATE(1313)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -179439,7 +179902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1314] = { + [STATE(1314)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -179532,7 +179995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [1315] = { + [STATE(1315)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -179625,7 +180088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1316] = { + [STATE(1316)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -179718,7 +180181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1317] = { + [STATE(1317)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -179811,7 +180274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1318] = { + [STATE(1318)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -179904,7 +180367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1319] = { + [STATE(1319)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -179997,7 +180460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1320] = { + [STATE(1320)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -180090,7 +180553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1321] = { + [STATE(1321)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -180183,7 +180646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1322] = { + [STATE(1322)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -180276,7 +180739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1323] = { + [STATE(1323)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -180369,7 +180832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1324] = { + [STATE(1324)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -180462,7 +180925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1325] = { + [STATE(1325)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -180555,7 +181018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1326] = { + [STATE(1326)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -180648,7 +181111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1327] = { + [STATE(1327)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -180741,7 +181204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1328] = { + [STATE(1328)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -180834,7 +181297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1329] = { + [STATE(1329)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -180927,7 +181390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1330] = { + [STATE(1330)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -181020,7 +181483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1331] = { + [STATE(1331)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -181113,7 +181576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1332] = { + [STATE(1332)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -181206,7 +181669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1333] = { + [STATE(1333)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -181299,7 +181762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1334] = { + [STATE(1334)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -181392,7 +181855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1335] = { + [STATE(1335)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -181485,7 +181948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1336] = { + [STATE(1336)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -181578,7 +182041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1337] = { + [STATE(1337)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -181671,7 +182134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1338] = { + [STATE(1338)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -181764,7 +182227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1339] = { + [STATE(1339)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -181857,7 +182320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1340] = { + [STATE(1340)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -181950,7 +182413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1341] = { + [STATE(1341)] = { [sym__type_parens] = STATE(7563), [sym__type_tuple] = STATE(7568), [sym__type_unboxed_tuple] = STATE(7569), @@ -182043,7 +182506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [1342] = { + [STATE(1342)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -182136,7 +182599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1343] = { + [STATE(1343)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -182229,7 +182692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1344] = { + [STATE(1344)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -182322,7 +182785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1345] = { + [STATE(1345)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -182415,7 +182878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1346] = { + [STATE(1346)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -182508,7 +182971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1347] = { + [STATE(1347)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -182601,7 +183064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1348] = { + [STATE(1348)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -182694,7 +183157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1349] = { + [STATE(1349)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -182787,7 +183250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1350] = { + [STATE(1350)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -182880,7 +183343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1351] = { + [STATE(1351)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -182973,7 +183436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1352] = { + [STATE(1352)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -183066,7 +183529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1353] = { + [STATE(1353)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -183159,7 +183622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1354] = { + [STATE(1354)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -183252,7 +183715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [1355] = { + [STATE(1355)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -183345,7 +183808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1356] = { + [STATE(1356)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -183438,7 +183901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1357] = { + [STATE(1357)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -183531,7 +183994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1358] = { + [STATE(1358)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -183624,7 +184087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1359] = { + [STATE(1359)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -183717,7 +184180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1360] = { + [STATE(1360)] = { [sym__at_type] = STATE(6810), [sym_explicit_type] = STATE(6811), [sym__pat_parens] = STATE(6781), @@ -183809,7 +184272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(2873), [sym__consym] = ACTIONS(2873), }, - [1361] = { + [STATE(1361)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -183901,7 +184364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1362] = { + [STATE(1362)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -183993,7 +184456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1363] = { + [STATE(1363)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -184085,7 +184548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1364] = { + [STATE(1364)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -184177,7 +184640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1365] = { + [STATE(1365)] = { [sym__type_parens] = STATE(7689), [sym__type_tuple] = STATE(7690), [sym__type_unboxed_tuple] = STATE(7692), @@ -184269,7 +184732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1366] = { + [STATE(1366)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -184361,7 +184824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(3269), [sym__cond_context] = ACTIONS(3269), }, - [1367] = { + [STATE(1367)] = { [sym__at_type] = STATE(6810), [sym_explicit_type] = STATE(6811), [sym__pat_parens] = STATE(6781), @@ -184453,7 +184916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(3003), [sym__consym] = ACTIONS(2751), }, - [1368] = { + [STATE(1368)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -184545,7 +185008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1369] = { + [STATE(1369)] = { [sym__at_type] = STATE(6810), [sym_explicit_type] = STATE(6811), [sym__pat_parens] = STATE(6781), @@ -184637,7 +185100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(2867), [sym__consym] = ACTIONS(2867), }, - [1370] = { + [STATE(1370)] = { [sym__at_type] = STATE(6810), [sym_explicit_type] = STATE(6811), [sym__pat_parens] = STATE(6781), @@ -184729,7 +185192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(3099), [sym__consym] = ACTIONS(2751), }, - [1371] = { + [STATE(1371)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -184821,7 +185284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(3277), [sym__cond_context] = ACTIONS(3277), }, - [1372] = { + [STATE(1372)] = { [sym__type_parens] = STATE(7689), [sym__type_tuple] = STATE(7690), [sym__type_unboxed_tuple] = STATE(7692), @@ -184913,7 +185376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1373] = { + [STATE(1373)] = { [sym__type_parens] = STATE(7689), [sym__type_tuple] = STATE(7690), [sym__type_unboxed_tuple] = STATE(7692), @@ -185005,7 +185468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1374] = { + [STATE(1374)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -185097,7 +185560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1375] = { + [STATE(1375)] = { [sym__type_parens] = STATE(7689), [sym__type_tuple] = STATE(7690), [sym__type_unboxed_tuple] = STATE(7692), @@ -185189,7 +185652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1376] = { + [STATE(1376)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -185281,7 +185744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1377] = { + [STATE(1377)] = { [sym__type_parens] = STATE(7689), [sym__type_tuple] = STATE(7690), [sym__type_unboxed_tuple] = STATE(7692), @@ -185373,7 +185836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1378] = { + [STATE(1378)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -185465,7 +185928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1379] = { + [STATE(1379)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -185557,7 +186020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1380] = { + [STATE(1380)] = { [sym__at_type] = STATE(6810), [sym_explicit_type] = STATE(6811), [sym__pat_parens] = STATE(6781), @@ -185649,7 +186112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(2879), [sym__consym] = ACTIONS(2879), }, - [1381] = { + [STATE(1381)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -185741,7 +186204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1382] = { + [STATE(1382)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -185833,7 +186296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(3287), [sym__cond_context] = ACTIONS(3287), }, - [1383] = { + [STATE(1383)] = { [sym__at_type] = STATE(6810), [sym_explicit_type] = STATE(6811), [sym__pat_parens] = STATE(6781), @@ -185925,7 +186388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(3101), [sym__consym] = ACTIONS(2751), }, - [1384] = { + [STATE(1384)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -186017,7 +186480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1385] = { + [STATE(1385)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -186109,7 +186572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1386] = { + [STATE(1386)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -186201,7 +186664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1387] = { + [STATE(1387)] = { [sym__type_parens] = STATE(7689), [sym__type_tuple] = STATE(7690), [sym__type_unboxed_tuple] = STATE(7692), @@ -186293,7 +186756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [1388] = { + [STATE(1388)] = { [sym__at_type] = STATE(6810), [sym_explicit_type] = STATE(6811), [sym__pat_parens] = STATE(6781), @@ -186385,7 +186848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(3061), [sym__consym] = ACTIONS(2751), }, - [1389] = { + [STATE(1389)] = { [sym__type_parens] = STATE(7689), [sym__type_tuple] = STATE(7690), [sym__type_unboxed_tuple] = STATE(7692), @@ -186477,7 +186940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [1390] = { + [STATE(1390)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -186569,7 +187032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1391] = { + [STATE(1391)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -186661,7 +187124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1392] = { + [STATE(1392)] = { [sym__at_type] = STATE(6810), [sym_explicit_type] = STATE(6811), [sym__pat_parens] = STATE(6781), @@ -186753,7 +187216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(2965), [sym__consym] = ACTIONS(2965), }, - [1393] = { + [STATE(1393)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -186845,7 +187308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1394] = { + [STATE(1394)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -186936,7 +187399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1395] = { + [STATE(1395)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -187027,7 +187490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1396] = { + [STATE(1396)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -187118,7 +187581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1397] = { + [STATE(1397)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -187209,7 +187672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1398] = { + [STATE(1398)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -187300,7 +187763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1399] = { + [STATE(1399)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -187391,7 +187854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1400] = { + [STATE(1400)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -187482,7 +187945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1401] = { + [STATE(1401)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -187573,7 +188036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1402] = { + [STATE(1402)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -187664,7 +188127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1403] = { + [STATE(1403)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -187755,7 +188218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1404] = { + [STATE(1404)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -187846,7 +188309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1405] = { + [STATE(1405)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -187937,7 +188400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1406] = { + [STATE(1406)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -188028,7 +188491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1407] = { + [STATE(1407)] = { [sym__type_wildcard] = STATE(7997), [sym__forall_keyword] = STATE(8277), [sym__forall_body] = STATE(12243), @@ -188119,7 +188582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [1408] = { + [STATE(1408)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -188210,7 +188673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1409] = { + [STATE(1409)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -188301,7 +188764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1410] = { + [STATE(1410)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -188392,7 +188855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1411] = { + [STATE(1411)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -188483,7 +188946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1412] = { + [STATE(1412)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -188574,7 +189037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1413] = { + [STATE(1413)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -188665,7 +189128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1414] = { + [STATE(1414)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -188756,7 +189219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1415] = { + [STATE(1415)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -188847,7 +189310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1416] = { + [STATE(1416)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -188938,7 +189401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1417] = { + [STATE(1417)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -189029,7 +189492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1418] = { + [STATE(1418)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -189120,7 +189583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1419] = { + [STATE(1419)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -189211,7 +189674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1420] = { + [STATE(1420)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -189302,7 +189765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1421] = { + [STATE(1421)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -189393,7 +189856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1422] = { + [STATE(1422)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -189484,7 +189947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1423] = { + [STATE(1423)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -189575,7 +190038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1424] = { + [STATE(1424)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -189666,7 +190129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1425] = { + [STATE(1425)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -189757,7 +190220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1426] = { + [STATE(1426)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -189848,7 +190311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1427] = { + [STATE(1427)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -189939,7 +190402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1428] = { + [STATE(1428)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -190030,7 +190493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1429] = { + [STATE(1429)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -190121,7 +190584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1430] = { + [STATE(1430)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -190212,7 +190675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1431] = { + [STATE(1431)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -190303,7 +190766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1432] = { + [STATE(1432)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -190394,7 +190857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1433] = { + [STATE(1433)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -190485,7 +190948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1434] = { + [STATE(1434)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -190576,7 +191039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1435] = { + [STATE(1435)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -190667,7 +191130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1436] = { + [STATE(1436)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -190758,7 +191221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1437] = { + [STATE(1437)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -190849,7 +191312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1438] = { + [STATE(1438)] = { [sym__type_parens] = STATE(7201), [sym__type_tuple] = STATE(7023), [sym__type_unboxed_tuple] = STATE(7039), @@ -190940,7 +191403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1439] = { + [STATE(1439)] = { [sym__type_parens] = STATE(5943), [sym__type_tuple] = STATE(5947), [sym__type_unboxed_tuple] = STATE(6035), @@ -191031,7 +191494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1440] = { + [STATE(1440)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -191122,7 +191585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1441] = { + [STATE(1441)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -191213,7 +191676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1442] = { + [STATE(1442)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -191304,7 +191767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1443] = { + [STATE(1443)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -191395,7 +191858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1444] = { + [STATE(1444)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -191486,7 +191949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1445] = { + [STATE(1445)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -191577,7 +192040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1446] = { + [STATE(1446)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -191668,7 +192131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1447] = { + [STATE(1447)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -191759,7 +192222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1448] = { + [STATE(1448)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -191850,7 +192313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1449] = { + [STATE(1449)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -191941,7 +192404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1450] = { + [STATE(1450)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -192032,7 +192495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1451] = { + [STATE(1451)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -192123,7 +192586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1452] = { + [STATE(1452)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -192214,7 +192677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1453] = { + [STATE(1453)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -192305,7 +192768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1454] = { + [STATE(1454)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -192396,7 +192859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1455] = { + [STATE(1455)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -192487,7 +192950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1456] = { + [STATE(1456)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -192578,7 +193041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1457] = { + [STATE(1457)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -192669,7 +193132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1458] = { + [STATE(1458)] = { [sym__type_parens] = STATE(7748), [sym__type_tuple] = STATE(7749), [sym__type_unboxed_tuple] = STATE(7750), @@ -192760,7 +193223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1155), [sym__consym] = ACTIONS(1155), }, - [1459] = { + [STATE(1459)] = { [sym__type_parens] = STATE(7748), [sym__type_tuple] = STATE(7749), [sym__type_unboxed_tuple] = STATE(7750), @@ -192851,7 +193314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1460] = { + [STATE(1460)] = { [sym__type_parens] = STATE(7748), [sym__type_tuple] = STATE(7749), [sym__type_unboxed_tuple] = STATE(7750), @@ -192942,7 +193405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1461] = { + [STATE(1461)] = { [sym__type_parens] = STATE(7748), [sym__type_tuple] = STATE(7749), [sym__type_unboxed_tuple] = STATE(7750), @@ -193033,7 +193496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1462] = { + [STATE(1462)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -193124,7 +193587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1463] = { + [STATE(1463)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -193215,7 +193678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1464] = { + [STATE(1464)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -193306,7 +193769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1465] = { + [STATE(1465)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -193397,7 +193860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1466] = { + [STATE(1466)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -193488,7 +193951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1467] = { + [STATE(1467)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -193579,7 +194042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1468] = { + [STATE(1468)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -193670,7 +194133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1469] = { + [STATE(1469)] = { [sym__type_parens] = STATE(5948), [sym__type_tuple] = STATE(5949), [sym__type_unboxed_tuple] = STATE(5950), @@ -193761,7 +194224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1470] = { + [STATE(1470)] = { [sym__type_parens] = STATE(6254), [sym__type_tuple] = STATE(6255), [sym__type_unboxed_tuple] = STATE(6256), @@ -193852,7 +194315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1471] = { + [STATE(1471)] = { [sym__type_parens] = STATE(6254), [sym__type_tuple] = STATE(6255), [sym__type_unboxed_tuple] = STATE(6256), @@ -193943,7 +194406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1472] = { + [STATE(1472)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -194034,7 +194497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1473] = { + [STATE(1473)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -194125,7 +194588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1474] = { + [STATE(1474)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -194216,7 +194679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1475] = { + [STATE(1475)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -194307,7 +194770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1476] = { + [STATE(1476)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -194398,7 +194861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1477] = { + [STATE(1477)] = { [sym__type_parens] = STATE(7748), [sym__type_tuple] = STATE(7749), [sym__type_unboxed_tuple] = STATE(7750), @@ -194489,7 +194952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(1187), [sym__consym] = ACTIONS(1187), }, - [1478] = { + [STATE(1478)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -194580,7 +195043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1479] = { + [STATE(1479)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -194671,7 +195134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1480] = { + [STATE(1480)] = { [sym__type_parens] = STATE(6374), [sym__type_tuple] = STATE(6375), [sym__type_unboxed_tuple] = STATE(6376), @@ -194762,7 +195225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1481] = { + [STATE(1481)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -194853,7 +195316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1482] = { + [STATE(1482)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -194944,7 +195407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1483] = { + [STATE(1483)] = { [sym__type_wildcard] = STATE(7997), [sym__forall_keyword] = STATE(8277), [sym__forall_body] = STATE(12243), @@ -195035,7 +195498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(219), [sym__consym] = ACTIONS(257), }, - [1484] = { + [STATE(1484)] = { [sym__type_parens] = STATE(7006), [sym__type_tuple] = STATE(6850), [sym__type_unboxed_tuple] = STATE(6852), @@ -195126,7 +195589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1485] = { + [STATE(1485)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -195217,7 +195680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1486] = { + [STATE(1486)] = { [sym__type_parens] = STATE(6715), [sym__type_tuple] = STATE(6716), [sym__type_unboxed_tuple] = STATE(6719), @@ -195308,7 +195771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1487] = { + [STATE(1487)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -195399,7 +195862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1488] = { + [STATE(1488)] = { [sym__type_parens] = STATE(7006), [sym__type_tuple] = STATE(6850), [sym__type_unboxed_tuple] = STATE(6852), @@ -195490,7 +195953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1489] = { + [STATE(1489)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -195581,7 +196044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1490] = { + [STATE(1490)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -195672,7 +196135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1491] = { + [STATE(1491)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -195763,7 +196226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1492] = { + [STATE(1492)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -195854,7 +196317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1493] = { + [STATE(1493)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -195945,7 +196408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1494] = { + [STATE(1494)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -196036,7 +196499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1495] = { + [STATE(1495)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -196127,7 +196590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1496] = { + [STATE(1496)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -196218,7 +196681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1497] = { + [STATE(1497)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -196309,7 +196772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1498] = { + [STATE(1498)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -196400,7 +196863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1499] = { + [STATE(1499)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -196491,7 +196954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1500] = { + [STATE(1500)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -196582,7 +197045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1501] = { + [STATE(1501)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -196673,7 +197136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1502] = { + [STATE(1502)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -196764,7 +197227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1503] = { + [STATE(1503)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -196855,7 +197318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1504] = { + [STATE(1504)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -196946,7 +197409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1505] = { + [STATE(1505)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -197037,7 +197500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [1506] = { + [STATE(1506)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -197128,7 +197591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [1507] = { + [STATE(1507)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -197219,7 +197682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1508] = { + [STATE(1508)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -197310,7 +197773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1509] = { + [STATE(1509)] = { [sym__type_parens] = STATE(6232), [sym__type_tuple] = STATE(6233), [sym__type_unboxed_tuple] = STATE(6234), @@ -197401,7 +197864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1510] = { + [STATE(1510)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -197492,7 +197955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1511] = { + [STATE(1511)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -197583,7 +198046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1512] = { + [STATE(1512)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -197674,7 +198137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1513] = { + [STATE(1513)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -197765,7 +198228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1514] = { + [STATE(1514)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -197856,7 +198319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1515] = { + [STATE(1515)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -197947,7 +198410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1516] = { + [STATE(1516)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -198038,7 +198501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1517] = { + [STATE(1517)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -198129,7 +198592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1518] = { + [STATE(1518)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -198220,7 +198683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1519] = { + [STATE(1519)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -198311,7 +198774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1520] = { + [STATE(1520)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -198402,7 +198865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1521] = { + [STATE(1521)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -198493,7 +198956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1522] = { + [STATE(1522)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -198584,7 +199047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1523] = { + [STATE(1523)] = { [sym__exp_th_quoted_name] = STATE(4559), [sym__exp_parens] = STATE(4504), [sym__exp_tuple] = STATE(4528), @@ -198675,7 +199138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(761), [sym__cond_splice] = ACTIONS(83), }, - [1524] = { + [STATE(1524)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -198766,7 +199229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1525] = { + [STATE(1525)] = { [sym__type_parens] = STATE(6254), [sym__type_tuple] = STATE(6255), [sym__type_unboxed_tuple] = STATE(6256), @@ -198857,7 +199320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1526] = { + [STATE(1526)] = { [sym__type_parens] = STATE(7006), [sym__type_tuple] = STATE(6850), [sym__type_unboxed_tuple] = STATE(6852), @@ -198948,7 +199411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1527] = { + [STATE(1527)] = { [sym__at_type] = STATE(7055), [sym_explicit_type] = STATE(7057), [sym__pat_parens] = STATE(7042), @@ -199039,7 +199502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3425), [sym__consym] = ACTIONS(2751), }, - [1528] = { + [STATE(1528)] = { [sym__type_parens] = STATE(3286), [sym__type_tuple] = STATE(3287), [sym__type_unboxed_tuple] = STATE(3288), @@ -199130,7 +199593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1529] = { + [STATE(1529)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -199221,7 +199684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1530] = { + [STATE(1530)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -199312,7 +199775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1531] = { + [STATE(1531)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -199403,7 +199866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1532] = { + [STATE(1532)] = { [sym__type_parens] = STATE(7006), [sym__type_tuple] = STATE(6850), [sym__type_unboxed_tuple] = STATE(6852), @@ -199494,7 +199957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1533] = { + [STATE(1533)] = { [sym__type_parens] = STATE(7006), [sym__type_tuple] = STATE(6850), [sym__type_unboxed_tuple] = STATE(6852), @@ -199585,7 +200048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1534] = { + [STATE(1534)] = { [sym__type_parens] = STATE(7006), [sym__type_tuple] = STATE(6850), [sym__type_unboxed_tuple] = STATE(6852), @@ -199676,7 +200139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1535] = { + [STATE(1535)] = { [sym__type_parens] = STATE(7006), [sym__type_tuple] = STATE(6850), [sym__type_unboxed_tuple] = STATE(6852), @@ -199767,7 +200230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1536] = { + [STATE(1536)] = { [sym__type_parens] = STATE(7006), [sym__type_tuple] = STATE(6850), [sym__type_unboxed_tuple] = STATE(6852), @@ -199858,7 +200321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1537] = { + [STATE(1537)] = { [sym__type_parens] = STATE(7006), [sym__type_tuple] = STATE(6850), [sym__type_unboxed_tuple] = STATE(6852), @@ -199949,7 +200412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1538] = { + [STATE(1538)] = { [sym__type_parens] = STATE(7006), [sym__type_tuple] = STATE(6850), [sym__type_unboxed_tuple] = STATE(6852), @@ -200040,7 +200503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1539] = { + [STATE(1539)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -200131,7 +200594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1540] = { + [STATE(1540)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -200222,7 +200685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1541] = { + [STATE(1541)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -200313,7 +200776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1542] = { + [STATE(1542)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -200404,7 +200867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1543] = { + [STATE(1543)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -200495,7 +200958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1544] = { + [STATE(1544)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -200586,7 +201049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1545] = { + [STATE(1545)] = { [sym__type_parens] = STATE(7201), [sym__type_tuple] = STATE(7023), [sym__type_unboxed_tuple] = STATE(7039), @@ -200677,7 +201140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1546] = { + [STATE(1546)] = { [sym__type_parens] = STATE(6254), [sym__type_tuple] = STATE(6255), [sym__type_unboxed_tuple] = STATE(6256), @@ -200768,7 +201231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1547] = { + [STATE(1547)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -200859,7 +201322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1548] = { + [STATE(1548)] = { [sym__type_parens] = STATE(7201), [sym__type_tuple] = STATE(7023), [sym__type_unboxed_tuple] = STATE(7039), @@ -200950,7 +201413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1549] = { + [STATE(1549)] = { [sym__type_parens] = STATE(7201), [sym__type_tuple] = STATE(7023), [sym__type_unboxed_tuple] = STATE(7039), @@ -201041,7 +201504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1550] = { + [STATE(1550)] = { [sym__type_parens] = STATE(7201), [sym__type_tuple] = STATE(7023), [sym__type_unboxed_tuple] = STATE(7039), @@ -201132,7 +201595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1551] = { + [STATE(1551)] = { [sym__type_parens] = STATE(7201), [sym__type_tuple] = STATE(7023), [sym__type_unboxed_tuple] = STATE(7039), @@ -201223,7 +201686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1552] = { + [STATE(1552)] = { [sym__type_parens] = STATE(7201), [sym__type_tuple] = STATE(7023), [sym__type_unboxed_tuple] = STATE(7039), @@ -201314,7 +201777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1553] = { + [STATE(1553)] = { [sym__type_parens] = STATE(7201), [sym__type_tuple] = STATE(7023), [sym__type_unboxed_tuple] = STATE(7039), @@ -201405,7 +201868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1554] = { + [STATE(1554)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -201496,7 +201959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1555] = { + [STATE(1555)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -201587,7 +202050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1556] = { + [STATE(1556)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -201678,7 +202141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1557] = { + [STATE(1557)] = { [sym__exp_th_quoted_name] = STATE(4908), [sym__exp_parens] = STATE(4909), [sym__exp_tuple] = STATE(4914), @@ -201769,7 +202232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(915), [sym__cond_splice] = ACTIONS(83), }, - [1558] = { + [STATE(1558)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -201860,7 +202323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1559] = { + [STATE(1559)] = { [sym__exp_th_quoted_name] = STATE(3944), [sym__exp_parens] = STATE(3951), [sym__exp_tuple] = STATE(3958), @@ -201951,7 +202414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(575), [sym__cond_splice] = ACTIONS(83), }, - [1560] = { + [STATE(1560)] = { [sym__type_parens] = STATE(5943), [sym__type_tuple] = STATE(5947), [sym__type_unboxed_tuple] = STATE(6035), @@ -202042,7 +202505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1561] = { + [STATE(1561)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -202133,7 +202596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1562] = { + [STATE(1562)] = { [sym__type_parens] = STATE(7201), [sym__type_tuple] = STATE(7023), [sym__type_unboxed_tuple] = STATE(7039), @@ -202224,7 +202687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1563] = { + [STATE(1563)] = { [sym__type_parens] = STATE(5943), [sym__type_tuple] = STATE(5947), [sym__type_unboxed_tuple] = STATE(6035), @@ -202315,7 +202778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1564] = { + [STATE(1564)] = { [sym__type_parens] = STATE(5943), [sym__type_tuple] = STATE(5947), [sym__type_unboxed_tuple] = STATE(6035), @@ -202406,7 +202869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1565] = { + [STATE(1565)] = { [sym__type_parens] = STATE(5943), [sym__type_tuple] = STATE(5947), [sym__type_unboxed_tuple] = STATE(6035), @@ -202497,7 +202960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1566] = { + [STATE(1566)] = { [sym__type_parens] = STATE(5943), [sym__type_tuple] = STATE(5947), [sym__type_unboxed_tuple] = STATE(6035), @@ -202588,7 +203051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1567] = { + [STATE(1567)] = { [sym__type_parens] = STATE(5943), [sym__type_tuple] = STATE(5947), [sym__type_unboxed_tuple] = STATE(6035), @@ -202679,7 +203142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1568] = { + [STATE(1568)] = { [sym__type_parens] = STATE(5943), [sym__type_tuple] = STATE(5947), [sym__type_unboxed_tuple] = STATE(6035), @@ -202770,7 +203233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1569] = { + [STATE(1569)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -202861,7 +203324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1570] = { + [STATE(1570)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -202952,7 +203415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1571] = { + [STATE(1571)] = { [sym__type_parens] = STATE(6715), [sym__type_tuple] = STATE(6716), [sym__type_unboxed_tuple] = STATE(6719), @@ -203043,7 +203506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1572] = { + [STATE(1572)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -203134,7 +203597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1573] = { + [STATE(1573)] = { [sym__type_parens] = STATE(5943), [sym__type_tuple] = STATE(5947), [sym__type_unboxed_tuple] = STATE(6035), @@ -203225,7 +203688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1574] = { + [STATE(1574)] = { [sym__type_parens] = STATE(6715), [sym__type_tuple] = STATE(6716), [sym__type_unboxed_tuple] = STATE(6719), @@ -203316,7 +203779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1575] = { + [STATE(1575)] = { [sym__type_parens] = STATE(6715), [sym__type_tuple] = STATE(6716), [sym__type_unboxed_tuple] = STATE(6719), @@ -203407,7 +203870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1576] = { + [STATE(1576)] = { [sym__type_parens] = STATE(6715), [sym__type_tuple] = STATE(6716), [sym__type_unboxed_tuple] = STATE(6719), @@ -203498,7 +203961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1577] = { + [STATE(1577)] = { [sym__type_parens] = STATE(6715), [sym__type_tuple] = STATE(6716), [sym__type_unboxed_tuple] = STATE(6719), @@ -203589,7 +204052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1578] = { + [STATE(1578)] = { [sym__type_parens] = STATE(6715), [sym__type_tuple] = STATE(6716), [sym__type_unboxed_tuple] = STATE(6719), @@ -203680,7 +204143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1579] = { + [STATE(1579)] = { [sym__type_parens] = STATE(6715), [sym__type_tuple] = STATE(6716), [sym__type_unboxed_tuple] = STATE(6719), @@ -203771,7 +204234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1580] = { + [STATE(1580)] = { [sym__exp_th_quoted_name] = STATE(5396), [sym__exp_parens] = STATE(5397), [sym__exp_tuple] = STATE(5398), @@ -203862,7 +204325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1055), [sym__cond_splice] = ACTIONS(83), }, - [1581] = { + [STATE(1581)] = { [sym__exp_th_quoted_name] = STATE(5543), [sym__exp_parens] = STATE(5544), [sym__exp_tuple] = STATE(5545), @@ -203953,7 +204416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1099), [sym__cond_splice] = ACTIONS(83), }, - [1582] = { + [STATE(1582)] = { [sym__type_parens] = STATE(3286), [sym__type_tuple] = STATE(3287), [sym__type_unboxed_tuple] = STATE(3288), @@ -204044,7 +204507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1583] = { + [STATE(1583)] = { [sym__type_parens] = STATE(2310), [sym__type_tuple] = STATE(2324), [sym__type_unboxed_tuple] = STATE(2337), @@ -204135,7 +204598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1584] = { + [STATE(1584)] = { [sym__type_parens] = STATE(6715), [sym__type_tuple] = STATE(6716), [sym__type_unboxed_tuple] = STATE(6719), @@ -204226,7 +204689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1585] = { + [STATE(1585)] = { [sym__type_parens] = STATE(3286), [sym__type_tuple] = STATE(3287), [sym__type_unboxed_tuple] = STATE(3288), @@ -204317,7 +204780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1586] = { + [STATE(1586)] = { [sym__type_parens] = STATE(3286), [sym__type_tuple] = STATE(3287), [sym__type_unboxed_tuple] = STATE(3288), @@ -204408,7 +204871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1587] = { + [STATE(1587)] = { [sym__type_parens] = STATE(3286), [sym__type_tuple] = STATE(3287), [sym__type_unboxed_tuple] = STATE(3288), @@ -204499,7 +204962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1588] = { + [STATE(1588)] = { [sym__type_parens] = STATE(3286), [sym__type_tuple] = STATE(3287), [sym__type_unboxed_tuple] = STATE(3288), @@ -204590,7 +205053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1589] = { + [STATE(1589)] = { [sym__type_parens] = STATE(3286), [sym__type_tuple] = STATE(3287), [sym__type_unboxed_tuple] = STATE(3288), @@ -204681,7 +205144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1590] = { + [STATE(1590)] = { [sym__type_parens] = STATE(3286), [sym__type_tuple] = STATE(3287), [sym__type_unboxed_tuple] = STATE(3288), @@ -204772,7 +205235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1591] = { + [STATE(1591)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -204863,7 +205326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1592] = { + [STATE(1592)] = { [sym__exp_th_quoted_name] = STATE(5231), [sym__exp_parens] = STATE(5232), [sym__exp_tuple] = STATE(5233), @@ -204954,7 +205417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(1023), [sym__cond_splice] = ACTIONS(83), }, - [1593] = { + [STATE(1593)] = { [sym__type_parens] = STATE(5948), [sym__type_tuple] = STATE(5949), [sym__type_unboxed_tuple] = STATE(5950), @@ -205045,7 +205508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1594] = { + [STATE(1594)] = { [sym__type_parens] = STATE(3572), [sym__type_tuple] = STATE(3573), [sym__type_unboxed_tuple] = STATE(3574), @@ -205136,7 +205599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1595] = { + [STATE(1595)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -205227,7 +205690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1596] = { + [STATE(1596)] = { [sym__type_parens] = STATE(3286), [sym__type_tuple] = STATE(3287), [sym__type_unboxed_tuple] = STATE(3288), @@ -205318,7 +205781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1597] = { + [STATE(1597)] = { [sym__type_parens] = STATE(5948), [sym__type_tuple] = STATE(5949), [sym__type_unboxed_tuple] = STATE(5950), @@ -205409,7 +205872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1598] = { + [STATE(1598)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -205500,7 +205963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [1599] = { + [STATE(1599)] = { [sym__type_parens] = STATE(5948), [sym__type_tuple] = STATE(5949), [sym__type_unboxed_tuple] = STATE(5950), @@ -205591,7 +206054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1600] = { + [STATE(1600)] = { [sym__type_parens] = STATE(5948), [sym__type_tuple] = STATE(5949), [sym__type_unboxed_tuple] = STATE(5950), @@ -205682,7 +206145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1601] = { + [STATE(1601)] = { [sym__type_parens] = STATE(5948), [sym__type_tuple] = STATE(5949), [sym__type_unboxed_tuple] = STATE(5950), @@ -205773,7 +206236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1602] = { + [STATE(1602)] = { [sym__type_parens] = STATE(5948), [sym__type_tuple] = STATE(5949), [sym__type_unboxed_tuple] = STATE(5950), @@ -205864,7 +206327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1603] = { + [STATE(1603)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -205955,7 +206418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1604] = { + [STATE(1604)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -206046,7 +206509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1605] = { + [STATE(1605)] = { [sym__type_parens] = STATE(6254), [sym__type_tuple] = STATE(6255), [sym__type_unboxed_tuple] = STATE(6256), @@ -206137,7 +206600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1606] = { + [STATE(1606)] = { [sym__type_parens] = STATE(3344), [sym__type_tuple] = STATE(3345), [sym__type_unboxed_tuple] = STATE(3346), @@ -206228,7 +206691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1607] = { + [STATE(1607)] = { [sym__type_parens] = STATE(5948), [sym__type_tuple] = STATE(5949), [sym__type_unboxed_tuple] = STATE(5950), @@ -206319,7 +206782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1608] = { + [STATE(1608)] = { [sym__type_parens] = STATE(6254), [sym__type_tuple] = STATE(6255), [sym__type_unboxed_tuple] = STATE(6256), @@ -206410,7 +206873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1609] = { + [STATE(1609)] = { [sym__type_parens] = STATE(6254), [sym__type_tuple] = STATE(6255), [sym__type_unboxed_tuple] = STATE(6256), @@ -206501,7 +206964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1610] = { + [STATE(1610)] = { [sym__type_parens] = STATE(6254), [sym__type_tuple] = STATE(6255), [sym__type_unboxed_tuple] = STATE(6256), @@ -206592,7 +207055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1611] = { + [STATE(1611)] = { [sym__type_parens] = STATE(6254), [sym__type_tuple] = STATE(6255), [sym__type_unboxed_tuple] = STATE(6256), @@ -206683,7 +207146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1612] = { + [STATE(1612)] = { [sym__type_parens] = STATE(6254), [sym__type_tuple] = STATE(6255), [sym__type_unboxed_tuple] = STATE(6256), @@ -206774,7 +207237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1613] = { + [STATE(1613)] = { [sym__type_parens] = STATE(6254), [sym__type_tuple] = STATE(6255), [sym__type_unboxed_tuple] = STATE(6256), @@ -206865,7 +207328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1614] = { + [STATE(1614)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -206956,7 +207419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1615] = { + [STATE(1615)] = { [sym__type_parens] = STATE(6801), [sym__type_tuple] = STATE(6802), [sym__type_unboxed_tuple] = STATE(6803), @@ -207047,7 +207510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1616] = { + [STATE(1616)] = { [sym__type_parens] = STATE(6254), [sym__type_tuple] = STATE(6255), [sym__type_unboxed_tuple] = STATE(6256), @@ -207138,7 +207601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1617] = { + [STATE(1617)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -207229,7 +207692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1618] = { + [STATE(1618)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -207320,7 +207783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1619] = { + [STATE(1619)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -207411,7 +207874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1620] = { + [STATE(1620)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -207502,7 +207965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1621] = { + [STATE(1621)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -207593,7 +208056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1622] = { + [STATE(1622)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -207684,7 +208147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1623] = { + [STATE(1623)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -207775,7 +208238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1624] = { + [STATE(1624)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -207866,7 +208329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1625] = { + [STATE(1625)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -207957,7 +208420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1626] = { + [STATE(1626)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -208048,7 +208511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1627] = { + [STATE(1627)] = { [sym__type_parens] = STATE(2310), [sym__type_tuple] = STATE(2324), [sym__type_unboxed_tuple] = STATE(2337), @@ -208139,7 +208602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1628] = { + [STATE(1628)] = { [sym__type_parens] = STATE(3366), [sym__type_tuple] = STATE(3367), [sym__type_unboxed_tuple] = STATE(3368), @@ -208230,7 +208693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1629] = { + [STATE(1629)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -208321,7 +208784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1630] = { + [STATE(1630)] = { [sym__type_parens] = STATE(2310), [sym__type_tuple] = STATE(2324), [sym__type_unboxed_tuple] = STATE(2337), @@ -208412,7 +208875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1631] = { + [STATE(1631)] = { [sym__type_parens] = STATE(2310), [sym__type_tuple] = STATE(2324), [sym__type_unboxed_tuple] = STATE(2337), @@ -208503,7 +208966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1632] = { + [STATE(1632)] = { [sym__type_parens] = STATE(2310), [sym__type_tuple] = STATE(2324), [sym__type_unboxed_tuple] = STATE(2337), @@ -208594,7 +209057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1633] = { + [STATE(1633)] = { [sym__type_parens] = STATE(2310), [sym__type_tuple] = STATE(2324), [sym__type_unboxed_tuple] = STATE(2337), @@ -208685,7 +209148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1634] = { + [STATE(1634)] = { [sym__type_parens] = STATE(2310), [sym__type_tuple] = STATE(2324), [sym__type_unboxed_tuple] = STATE(2337), @@ -208776,7 +209239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1635] = { + [STATE(1635)] = { [sym__type_parens] = STATE(2310), [sym__type_tuple] = STATE(2324), [sym__type_unboxed_tuple] = STATE(2337), @@ -208867,7 +209330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1636] = { + [STATE(1636)] = { [sym__type_parens] = STATE(6374), [sym__type_tuple] = STATE(6375), [sym__type_unboxed_tuple] = STATE(6376), @@ -208958,7 +209421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1637] = { + [STATE(1637)] = { [sym__type_parens] = STATE(3069), [sym__type_tuple] = STATE(3078), [sym__type_unboxed_tuple] = STATE(3091), @@ -209049,7 +209512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1638] = { + [STATE(1638)] = { [sym__type_parens] = STATE(2310), [sym__type_tuple] = STATE(2324), [sym__type_unboxed_tuple] = STATE(2337), @@ -209140,7 +209603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1639] = { + [STATE(1639)] = { [sym__type_parens] = STATE(6374), [sym__type_tuple] = STATE(6375), [sym__type_unboxed_tuple] = STATE(6376), @@ -209231,7 +209694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1640] = { + [STATE(1640)] = { [sym__type_parens] = STATE(6374), [sym__type_tuple] = STATE(6375), [sym__type_unboxed_tuple] = STATE(6376), @@ -209322,7 +209785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1641] = { + [STATE(1641)] = { [sym__type_parens] = STATE(6374), [sym__type_tuple] = STATE(6375), [sym__type_unboxed_tuple] = STATE(6376), @@ -209413,7 +209876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1642] = { + [STATE(1642)] = { [sym__type_parens] = STATE(6374), [sym__type_tuple] = STATE(6375), [sym__type_unboxed_tuple] = STATE(6376), @@ -209504,7 +209967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1643] = { + [STATE(1643)] = { [sym__type_parens] = STATE(6374), [sym__type_tuple] = STATE(6375), [sym__type_unboxed_tuple] = STATE(6376), @@ -209595,7 +210058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1644] = { + [STATE(1644)] = { [sym__type_parens] = STATE(6374), [sym__type_tuple] = STATE(6375), [sym__type_unboxed_tuple] = STATE(6376), @@ -209686,7 +210149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1645] = { + [STATE(1645)] = { [sym__type_parens] = STATE(3572), [sym__type_tuple] = STATE(3573), [sym__type_unboxed_tuple] = STATE(3574), @@ -209777,7 +210240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1646] = { + [STATE(1646)] = { [sym__type_parens] = STATE(5948), [sym__type_tuple] = STATE(5949), [sym__type_unboxed_tuple] = STATE(5950), @@ -209868,7 +210331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1647] = { + [STATE(1647)] = { [sym__type_parens] = STATE(6374), [sym__type_tuple] = STATE(6375), [sym__type_unboxed_tuple] = STATE(6376), @@ -209959,7 +210422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1648] = { + [STATE(1648)] = { [sym__type_parens] = STATE(3572), [sym__type_tuple] = STATE(3573), [sym__type_unboxed_tuple] = STATE(3574), @@ -210050,7 +210513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1649] = { + [STATE(1649)] = { [sym__type_parens] = STATE(3572), [sym__type_tuple] = STATE(3573), [sym__type_unboxed_tuple] = STATE(3574), @@ -210141,7 +210604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1650] = { + [STATE(1650)] = { [sym__type_parens] = STATE(3572), [sym__type_tuple] = STATE(3573), [sym__type_unboxed_tuple] = STATE(3574), @@ -210232,7 +210695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1651] = { + [STATE(1651)] = { [sym__type_parens] = STATE(3572), [sym__type_tuple] = STATE(3573), [sym__type_unboxed_tuple] = STATE(3574), @@ -210323,7 +210786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1652] = { + [STATE(1652)] = { [sym__type_parens] = STATE(3572), [sym__type_tuple] = STATE(3573), [sym__type_unboxed_tuple] = STATE(3574), @@ -210414,7 +210877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1653] = { + [STATE(1653)] = { [sym__type_parens] = STATE(3572), [sym__type_tuple] = STATE(3573), [sym__type_unboxed_tuple] = STATE(3574), @@ -210505,7 +210968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1654] = { + [STATE(1654)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -210596,7 +211059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1655] = { + [STATE(1655)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -210687,7 +211150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1656] = { + [STATE(1656)] = { [sym__exp_th_quoted_name] = STATE(5117), [sym__exp_parens] = STATE(5118), [sym__exp_tuple] = STATE(5119), @@ -210778,7 +211241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(983), [sym__cond_splice] = ACTIONS(83), }, - [1657] = { + [STATE(1657)] = { [sym__type_parens] = STATE(3344), [sym__type_tuple] = STATE(3345), [sym__type_unboxed_tuple] = STATE(3346), @@ -210869,7 +211332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1658] = { + [STATE(1658)] = { [sym__type_parens] = STATE(6913), [sym__type_tuple] = STATE(6914), [sym__type_unboxed_tuple] = STATE(6915), @@ -210960,7 +211423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1659] = { + [STATE(1659)] = { [sym__type_parens] = STATE(3572), [sym__type_tuple] = STATE(3573), [sym__type_unboxed_tuple] = STATE(3574), @@ -211051,7 +211514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1660] = { + [STATE(1660)] = { [sym__type_parens] = STATE(3344), [sym__type_tuple] = STATE(3345), [sym__type_unboxed_tuple] = STATE(3346), @@ -211142,7 +211605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1661] = { + [STATE(1661)] = { [sym__type_parens] = STATE(3344), [sym__type_tuple] = STATE(3345), [sym__type_unboxed_tuple] = STATE(3346), @@ -211233,7 +211696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1662] = { + [STATE(1662)] = { [sym__type_parens] = STATE(3344), [sym__type_tuple] = STATE(3345), [sym__type_unboxed_tuple] = STATE(3346), @@ -211324,7 +211787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1663] = { + [STATE(1663)] = { [sym__type_parens] = STATE(3344), [sym__type_tuple] = STATE(3345), [sym__type_unboxed_tuple] = STATE(3346), @@ -211415,7 +211878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1664] = { + [STATE(1664)] = { [sym__type_parens] = STATE(3344), [sym__type_tuple] = STATE(3345), [sym__type_unboxed_tuple] = STATE(3346), @@ -211506,7 +211969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1665] = { + [STATE(1665)] = { [sym__type_parens] = STATE(3344), [sym__type_tuple] = STATE(3345), [sym__type_unboxed_tuple] = STATE(3346), @@ -211597,7 +212060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1666] = { + [STATE(1666)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -211688,7 +212151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1667] = { + [STATE(1667)] = { [sym__type_parens] = STATE(6801), [sym__type_tuple] = STATE(6802), [sym__type_unboxed_tuple] = STATE(6803), @@ -211779,7 +212242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1668] = { + [STATE(1668)] = { [sym__type_parens] = STATE(3253), [sym__type_tuple] = STATE(3254), [sym__type_unboxed_tuple] = STATE(3255), @@ -211870,7 +212333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1669] = { + [STATE(1669)] = { [sym__type_parens] = STATE(3344), [sym__type_tuple] = STATE(3345), [sym__type_unboxed_tuple] = STATE(3346), @@ -211961,7 +212424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1670] = { + [STATE(1670)] = { [sym__type_parens] = STATE(6801), [sym__type_tuple] = STATE(6802), [sym__type_unboxed_tuple] = STATE(6803), @@ -212052,7 +212515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1671] = { + [STATE(1671)] = { [sym__type_parens] = STATE(6801), [sym__type_tuple] = STATE(6802), [sym__type_unboxed_tuple] = STATE(6803), @@ -212143,7 +212606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1672] = { + [STATE(1672)] = { [sym__type_parens] = STATE(6801), [sym__type_tuple] = STATE(6802), [sym__type_unboxed_tuple] = STATE(6803), @@ -212234,7 +212697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1673] = { + [STATE(1673)] = { [sym__type_parens] = STATE(6801), [sym__type_tuple] = STATE(6802), [sym__type_unboxed_tuple] = STATE(6803), @@ -212325,7 +212788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1674] = { + [STATE(1674)] = { [sym__type_parens] = STATE(6801), [sym__type_tuple] = STATE(6802), [sym__type_unboxed_tuple] = STATE(6803), @@ -212416,7 +212879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1675] = { + [STATE(1675)] = { [sym__type_parens] = STATE(6801), [sym__type_tuple] = STATE(6802), [sym__type_unboxed_tuple] = STATE(6803), @@ -212507,7 +212970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1676] = { + [STATE(1676)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -212598,7 +213061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1677] = { + [STATE(1677)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -212689,7 +213152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1678] = { + [STATE(1678)] = { [sym__type_parens] = STATE(3366), [sym__type_tuple] = STATE(3367), [sym__type_unboxed_tuple] = STATE(3368), @@ -212780,7 +213243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1679] = { + [STATE(1679)] = { [sym__type_parens] = STATE(2830), [sym__type_tuple] = STATE(2838), [sym__type_unboxed_tuple] = STATE(2754), @@ -212871,7 +213334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1680] = { + [STATE(1680)] = { [sym__type_parens] = STATE(6801), [sym__type_tuple] = STATE(6802), [sym__type_unboxed_tuple] = STATE(6803), @@ -212962,7 +213425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1681] = { + [STATE(1681)] = { [sym__type_parens] = STATE(3366), [sym__type_tuple] = STATE(3367), [sym__type_unboxed_tuple] = STATE(3368), @@ -213053,7 +213516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1682] = { + [STATE(1682)] = { [sym__type_parens] = STATE(3366), [sym__type_tuple] = STATE(3367), [sym__type_unboxed_tuple] = STATE(3368), @@ -213144,7 +213607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1683] = { + [STATE(1683)] = { [sym__type_parens] = STATE(3366), [sym__type_tuple] = STATE(3367), [sym__type_unboxed_tuple] = STATE(3368), @@ -213235,7 +213698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1684] = { + [STATE(1684)] = { [sym__type_parens] = STATE(3366), [sym__type_tuple] = STATE(3367), [sym__type_unboxed_tuple] = STATE(3368), @@ -213326,7 +213789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1685] = { + [STATE(1685)] = { [sym__type_parens] = STATE(3366), [sym__type_tuple] = STATE(3367), [sym__type_unboxed_tuple] = STATE(3368), @@ -213417,7 +213880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1686] = { + [STATE(1686)] = { [sym__type_parens] = STATE(3366), [sym__type_tuple] = STATE(3367), [sym__type_unboxed_tuple] = STATE(3368), @@ -213508,7 +213971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1687] = { + [STATE(1687)] = { [sym__exp_th_quoted_name] = STATE(4659), [sym__exp_parens] = STATE(4661), [sym__exp_tuple] = STATE(4662), @@ -213599,7 +214062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(839), [sym__cond_splice] = ACTIONS(83), }, - [1688] = { + [STATE(1688)] = { [sym__type_parens] = STATE(3069), [sym__type_tuple] = STATE(3078), [sym__type_unboxed_tuple] = STATE(3091), @@ -213690,7 +214153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1689] = { + [STATE(1689)] = { [sym__type_parens] = STATE(3655), [sym__type_tuple] = STATE(3656), [sym__type_unboxed_tuple] = STATE(3657), @@ -213781,7 +214244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1690] = { + [STATE(1690)] = { [sym__type_parens] = STATE(3366), [sym__type_tuple] = STATE(3367), [sym__type_unboxed_tuple] = STATE(3368), @@ -213872,7 +214335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1691] = { + [STATE(1691)] = { [sym__type_parens] = STATE(3069), [sym__type_tuple] = STATE(3078), [sym__type_unboxed_tuple] = STATE(3091), @@ -213963,7 +214426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1692] = { + [STATE(1692)] = { [sym__type_parens] = STATE(3069), [sym__type_tuple] = STATE(3078), [sym__type_unboxed_tuple] = STATE(3091), @@ -214054,7 +214517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1693] = { + [STATE(1693)] = { [sym__type_parens] = STATE(3069), [sym__type_tuple] = STATE(3078), [sym__type_unboxed_tuple] = STATE(3091), @@ -214145,7 +214608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1694] = { + [STATE(1694)] = { [sym__type_parens] = STATE(3069), [sym__type_tuple] = STATE(3078), [sym__type_unboxed_tuple] = STATE(3091), @@ -214236,7 +214699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1695] = { + [STATE(1695)] = { [sym__type_parens] = STATE(3069), [sym__type_tuple] = STATE(3078), [sym__type_unboxed_tuple] = STATE(3091), @@ -214327,7 +214790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1696] = { + [STATE(1696)] = { [sym__type_parens] = STATE(3069), [sym__type_tuple] = STATE(3078), [sym__type_unboxed_tuple] = STATE(3091), @@ -214418,7 +214881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1697] = { + [STATE(1697)] = { [sym__type_parens] = STATE(6913), [sym__type_tuple] = STATE(6914), [sym__type_unboxed_tuple] = STATE(6915), @@ -214509,7 +214972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1698] = { + [STATE(1698)] = { [sym__type_parens] = STATE(3069), [sym__type_tuple] = STATE(3078), [sym__type_unboxed_tuple] = STATE(3091), @@ -214600,7 +215063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1699] = { + [STATE(1699)] = { [sym__type_parens] = STATE(6913), [sym__type_tuple] = STATE(6914), [sym__type_unboxed_tuple] = STATE(6915), @@ -214691,7 +215154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1700] = { + [STATE(1700)] = { [sym__type_parens] = STATE(6913), [sym__type_tuple] = STATE(6914), [sym__type_unboxed_tuple] = STATE(6915), @@ -214782,7 +215245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1701] = { + [STATE(1701)] = { [sym__type_parens] = STATE(6913), [sym__type_tuple] = STATE(6914), [sym__type_unboxed_tuple] = STATE(6915), @@ -214873,7 +215336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1702] = { + [STATE(1702)] = { [sym__type_parens] = STATE(6913), [sym__type_tuple] = STATE(6914), [sym__type_unboxed_tuple] = STATE(6915), @@ -214964,7 +215427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1703] = { + [STATE(1703)] = { [sym__type_parens] = STATE(6913), [sym__type_tuple] = STATE(6914), [sym__type_unboxed_tuple] = STATE(6915), @@ -215055,7 +215518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1704] = { + [STATE(1704)] = { [sym__type_parens] = STATE(6913), [sym__type_tuple] = STATE(6914), [sym__type_unboxed_tuple] = STATE(6915), @@ -215146,7 +215609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1705] = { + [STATE(1705)] = { [sym__type_parens] = STATE(3253), [sym__type_tuple] = STATE(3254), [sym__type_unboxed_tuple] = STATE(3255), @@ -215237,7 +215700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1706] = { + [STATE(1706)] = { [sym__type_parens] = STATE(6913), [sym__type_tuple] = STATE(6914), [sym__type_unboxed_tuple] = STATE(6915), @@ -215328,7 +215791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1707] = { + [STATE(1707)] = { [sym__type_parens] = STATE(3253), [sym__type_tuple] = STATE(3254), [sym__type_unboxed_tuple] = STATE(3255), @@ -215419,7 +215882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1708] = { + [STATE(1708)] = { [sym__type_parens] = STATE(3253), [sym__type_tuple] = STATE(3254), [sym__type_unboxed_tuple] = STATE(3255), @@ -215510,7 +215973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1709] = { + [STATE(1709)] = { [sym__type_parens] = STATE(3253), [sym__type_tuple] = STATE(3254), [sym__type_unboxed_tuple] = STATE(3255), @@ -215601,7 +216064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1710] = { + [STATE(1710)] = { [sym__type_parens] = STATE(3253), [sym__type_tuple] = STATE(3254), [sym__type_unboxed_tuple] = STATE(3255), @@ -215692,7 +216155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1711] = { + [STATE(1711)] = { [sym__type_parens] = STATE(3253), [sym__type_tuple] = STATE(3254), [sym__type_unboxed_tuple] = STATE(3255), @@ -215783,7 +216246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1712] = { + [STATE(1712)] = { [sym__type_parens] = STATE(3253), [sym__type_tuple] = STATE(3254), [sym__type_unboxed_tuple] = STATE(3255), @@ -215874,7 +216337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1713] = { + [STATE(1713)] = { [sym__type_parens] = STATE(2830), [sym__type_tuple] = STATE(2838), [sym__type_unboxed_tuple] = STATE(2754), @@ -215965,7 +216428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1714] = { + [STATE(1714)] = { [sym__type_parens] = STATE(3253), [sym__type_tuple] = STATE(3254), [sym__type_unboxed_tuple] = STATE(3255), @@ -216056,7 +216519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1715] = { + [STATE(1715)] = { [sym__type_parens] = STATE(2830), [sym__type_tuple] = STATE(2838), [sym__type_unboxed_tuple] = STATE(2754), @@ -216147,7 +216610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1716] = { + [STATE(1716)] = { [sym__type_parens] = STATE(2830), [sym__type_tuple] = STATE(2838), [sym__type_unboxed_tuple] = STATE(2754), @@ -216238,7 +216701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1717] = { + [STATE(1717)] = { [sym__type_parens] = STATE(2830), [sym__type_tuple] = STATE(2838), [sym__type_unboxed_tuple] = STATE(2754), @@ -216329,7 +216792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1718] = { + [STATE(1718)] = { [sym__type_parens] = STATE(2830), [sym__type_tuple] = STATE(2838), [sym__type_unboxed_tuple] = STATE(2754), @@ -216420,7 +216883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1719] = { + [STATE(1719)] = { [sym__type_parens] = STATE(2830), [sym__type_tuple] = STATE(2838), [sym__type_unboxed_tuple] = STATE(2754), @@ -216511,7 +216974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1720] = { + [STATE(1720)] = { [sym__type_parens] = STATE(2830), [sym__type_tuple] = STATE(2838), [sym__type_unboxed_tuple] = STATE(2754), @@ -216602,7 +217065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1721] = { + [STATE(1721)] = { [sym__type_parens] = STATE(3655), [sym__type_tuple] = STATE(3656), [sym__type_unboxed_tuple] = STATE(3657), @@ -216693,7 +217156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1722] = { + [STATE(1722)] = { [sym__type_parens] = STATE(2830), [sym__type_tuple] = STATE(2838), [sym__type_unboxed_tuple] = STATE(2754), @@ -216784,7 +217247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1723] = { + [STATE(1723)] = { [sym__type_parens] = STATE(3655), [sym__type_tuple] = STATE(3656), [sym__type_unboxed_tuple] = STATE(3657), @@ -216875,7 +217338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1724] = { + [STATE(1724)] = { [sym__type_parens] = STATE(3655), [sym__type_tuple] = STATE(3656), [sym__type_unboxed_tuple] = STATE(3657), @@ -216966,7 +217429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1725] = { + [STATE(1725)] = { [sym__type_parens] = STATE(3655), [sym__type_tuple] = STATE(3656), [sym__type_unboxed_tuple] = STATE(3657), @@ -217057,7 +217520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1726] = { + [STATE(1726)] = { [sym__type_parens] = STATE(3655), [sym__type_tuple] = STATE(3656), [sym__type_unboxed_tuple] = STATE(3657), @@ -217148,7 +217611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1727] = { + [STATE(1727)] = { [sym__type_parens] = STATE(3655), [sym__type_tuple] = STATE(3656), [sym__type_unboxed_tuple] = STATE(3657), @@ -217239,7 +217702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1728] = { + [STATE(1728)] = { [sym__type_parens] = STATE(3655), [sym__type_tuple] = STATE(3656), [sym__type_unboxed_tuple] = STATE(3657), @@ -217330,7 +217793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1729] = { + [STATE(1729)] = { [sym__type_parens] = STATE(3655), [sym__type_tuple] = STATE(3656), [sym__type_unboxed_tuple] = STATE(3657), @@ -217421,7 +217884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1730] = { + [STATE(1730)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -217512,7 +217975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1731] = { + [STATE(1731)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -217603,7 +218066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1732] = { + [STATE(1732)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -217694,7 +218157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1733] = { + [STATE(1733)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -217785,7 +218248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1734] = { + [STATE(1734)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -217876,7 +218339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1735] = { + [STATE(1735)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -217967,7 +218430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [1736] = { + [STATE(1736)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -218058,7 +218521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1737] = { + [STATE(1737)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -218149,7 +218612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1738] = { + [STATE(1738)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -218240,7 +218703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1739] = { + [STATE(1739)] = { [sym__type_parens] = STATE(6407), [sym__type_tuple] = STATE(6408), [sym__type_unboxed_tuple] = STATE(6409), @@ -218331,7 +218794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1740] = { + [STATE(1740)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -218422,7 +218885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1741] = { + [STATE(1741)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -218513,7 +218976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1742] = { + [STATE(1742)] = { [sym__type_parens] = STATE(6254), [sym__type_tuple] = STATE(6255), [sym__type_unboxed_tuple] = STATE(6256), @@ -218604,7 +219067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1743] = { + [STATE(1743)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -218695,7 +219158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1744] = { + [STATE(1744)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -218786,7 +219249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1745] = { + [STATE(1745)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -218877,7 +219340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1746] = { + [STATE(1746)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -218968,7 +219431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1747] = { + [STATE(1747)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -219059,7 +219522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1748] = { + [STATE(1748)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -219150,7 +219613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1749] = { + [STATE(1749)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -219241,7 +219704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1750] = { + [STATE(1750)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -219332,7 +219795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1751] = { + [STATE(1751)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -219423,7 +219886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1752] = { + [STATE(1752)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -219514,7 +219977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [1753] = { + [STATE(1753)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -219605,7 +220068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [1754] = { + [STATE(1754)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -219696,7 +220159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [1755] = { + [STATE(1755)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -219787,7 +220250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [1756] = { + [STATE(1756)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -219878,7 +220341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1757] = { + [STATE(1757)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -219969,7 +220432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1758] = { + [STATE(1758)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -220060,7 +220523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1759] = { + [STATE(1759)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -220151,7 +220614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1760] = { + [STATE(1760)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -220242,7 +220705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1761] = { + [STATE(1761)] = { [sym__type_parens] = STATE(3894), [sym__type_tuple] = STATE(3895), [sym__type_unboxed_tuple] = STATE(3898), @@ -220333,7 +220796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1762] = { + [STATE(1762)] = { [sym__type_parens] = STATE(7748), [sym__type_tuple] = STATE(7749), [sym__type_unboxed_tuple] = STATE(7750), @@ -220424,7 +220887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1763] = { + [STATE(1763)] = { [sym__exp_th_quoted_name] = STATE(3018), [sym__exp_parens] = STATE(3019), [sym__exp_tuple] = STATE(3025), @@ -220515,7 +220978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(319), [sym__cond_splice] = ACTIONS(83), }, - [1764] = { + [STATE(1764)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -220606,7 +221069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [1765] = { + [STATE(1765)] = { [sym__exp_th_quoted_name] = STATE(4609), [sym__exp_parens] = STATE(4610), [sym__exp_tuple] = STATE(4611), @@ -220697,7 +221160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(687), [sym__cond_splice] = ACTIONS(83), }, - [1766] = { + [STATE(1766)] = { [sym__type_parens] = STATE(5948), [sym__type_tuple] = STATE(5949), [sym__type_unboxed_tuple] = STATE(5950), @@ -220788,7 +221251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_prefix_tilde] = ACTIONS(1405), [sym__cond_context] = ACTIONS(1407), }, - [1767] = { + [STATE(1767)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -220878,7 +221341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1768] = { + [STATE(1768)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -220968,7 +221431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1769] = { + [STATE(1769)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -221058,7 +221521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1770] = { + [STATE(1770)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -221148,7 +221611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1771] = { + [STATE(1771)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -221238,7 +221701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1772] = { + [STATE(1772)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -221328,7 +221791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1773] = { + [STATE(1773)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -221418,7 +221881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1774] = { + [STATE(1774)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -221508,7 +221971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1775] = { + [STATE(1775)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -221598,7 +222061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1776] = { + [STATE(1776)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -221688,7 +222151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1777] = { + [STATE(1777)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -221778,7 +222241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1778] = { + [STATE(1778)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -221868,7 +222331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1779] = { + [STATE(1779)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -221958,7 +222421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1780] = { + [STATE(1780)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -222048,7 +222511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1781] = { + [STATE(1781)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -222138,7 +222601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1782] = { + [STATE(1782)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -222228,7 +222691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1783] = { + [STATE(1783)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -222318,7 +222781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1784] = { + [STATE(1784)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -222408,7 +222871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1785] = { + [STATE(1785)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -222498,7 +222961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1786] = { + [STATE(1786)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -222588,7 +223051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1787] = { + [STATE(1787)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -222678,7 +223141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1788] = { + [STATE(1788)] = { [sym__at_type] = STATE(7241), [sym_explicit_type] = STATE(7243), [sym__pat_parens] = STATE(7403), @@ -222768,7 +223231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3531), [sym__consym] = ACTIONS(2751), }, - [1789] = { + [STATE(1789)] = { [sym__at_type] = STATE(7055), [sym_explicit_type] = STATE(7057), [sym__pat_parens] = STATE(7042), @@ -222858,7 +223321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(2867), [sym__consym] = ACTIONS(2867), }, - [1790] = { + [STATE(1790)] = { [sym__at_type] = STATE(7055), [sym_explicit_type] = STATE(7057), [sym__pat_parens] = STATE(7042), @@ -222948,7 +223411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(2873), [sym__consym] = ACTIONS(2873), }, - [1791] = { + [STATE(1791)] = { [sym__at_type] = STATE(7055), [sym_explicit_type] = STATE(7057), [sym__pat_parens] = STATE(7042), @@ -223038,7 +223501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(2879), [sym__consym] = ACTIONS(2879), }, - [1792] = { + [STATE(1792)] = { [sym__at_type] = STATE(7055), [sym_explicit_type] = STATE(7057), [sym__pat_parens] = STATE(7042), @@ -223128,7 +223591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(2965), [sym__consym] = ACTIONS(2965), }, - [1793] = { + [STATE(1793)] = { [sym__at_type] = STATE(7055), [sym_explicit_type] = STATE(7057), [sym__pat_parens] = STATE(7042), @@ -223218,7 +223681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3425), [sym__consym] = ACTIONS(2751), }, - [1794] = { + [STATE(1794)] = { [sym__at_type] = STATE(7055), [sym_explicit_type] = STATE(7057), [sym__pat_parens] = STATE(7042), @@ -223308,7 +223771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3425), [sym__consym] = ACTIONS(2751), }, - [1795] = { + [STATE(1795)] = { [sym__at_type] = STATE(7055), [sym_explicit_type] = STATE(7057), [sym__pat_parens] = STATE(7042), @@ -223398,7 +223861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3425), [sym__consym] = ACTIONS(2751), }, - [1796] = { + [STATE(1796)] = { [sym__at_type] = STATE(7055), [sym_explicit_type] = STATE(7057), [sym__pat_parens] = STATE(7042), @@ -223488,7 +223951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3425), [sym__consym] = ACTIONS(2751), }, - [1797] = { + [STATE(1797)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -223577,7 +224040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1798] = { + [STATE(1798)] = { [sym__at_type] = STATE(7241), [sym_explicit_type] = STATE(7243), [sym__pat_parens] = STATE(7403), @@ -223666,7 +224129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(2965), [sym__consym] = ACTIONS(2965), }, - [1799] = { + [STATE(1799)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -223755,7 +224218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(2751), }, - [1800] = { + [STATE(1800)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -223844,7 +224307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1801] = { + [STATE(1801)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -223933,7 +224396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1802] = { + [STATE(1802)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -224022,7 +224485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3541), [sym__consym] = ACTIONS(2751), }, - [1803] = { + [STATE(1803)] = { [sym__at_type] = STATE(7241), [sym_explicit_type] = STATE(7243), [sym__pat_parens] = STATE(7403), @@ -224111,7 +224574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3531), [sym__consym] = ACTIONS(2751), }, - [1804] = { + [STATE(1804)] = { [sym__at_type] = STATE(7241), [sym_explicit_type] = STATE(7243), [sym__pat_parens] = STATE(7403), @@ -224200,7 +224663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(2867), [sym__consym] = ACTIONS(2867), }, - [1805] = { + [STATE(1805)] = { [sym__at_type] = STATE(7241), [sym_explicit_type] = STATE(7243), [sym__pat_parens] = STATE(7403), @@ -224289,7 +224752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(2873), [sym__consym] = ACTIONS(2873), }, - [1806] = { + [STATE(1806)] = { [sym__at_type] = STATE(7241), [sym_explicit_type] = STATE(7243), [sym__pat_parens] = STATE(7403), @@ -224378,7 +224841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3531), [sym__consym] = ACTIONS(2751), }, - [1807] = { + [STATE(1807)] = { [sym__at_type] = STATE(7241), [sym_explicit_type] = STATE(7243), [sym__pat_parens] = STATE(7403), @@ -224467,7 +224930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3531), [sym__consym] = ACTIONS(2751), }, - [1808] = { + [STATE(1808)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -224556,7 +225019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1809] = { + [STATE(1809)] = { [sym__at_type] = STATE(7241), [sym_explicit_type] = STATE(7243), [sym__pat_parens] = STATE(7403), @@ -224645,7 +225108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(2879), [sym__consym] = ACTIONS(2879), }, - [1810] = { + [STATE(1810)] = { [sym__at_type] = STATE(7241), [sym_explicit_type] = STATE(7243), [sym__pat_parens] = STATE(7403), @@ -224734,7 +225197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3531), [sym__consym] = ACTIONS(2751), }, - [1811] = { + [STATE(1811)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -224822,7 +225285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3541), [sym__consym] = ACTIONS(2751), }, - [1812] = { + [STATE(1812)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -224910,7 +225373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(2421), }, - [1813] = { + [STATE(1813)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -224998,7 +225461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(2879), [sym__consym] = ACTIONS(2879), }, - [1814] = { + [STATE(1814)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -225086,7 +225549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(2965), [sym__consym] = ACTIONS(2965), }, - [1815] = { + [STATE(1815)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -225174,7 +225637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3541), [sym__consym] = ACTIONS(2751), }, - [1816] = { + [STATE(1816)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -225262,7 +225725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3541), [sym__consym] = ACTIONS(2751), }, - [1817] = { + [STATE(1817)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -225350,7 +225813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(1991), }, - [1818] = { + [STATE(1818)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -225438,7 +225901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3541), [sym__consym] = ACTIONS(2751), }, - [1819] = { + [STATE(1819)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -225526,7 +225989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1820] = { + [STATE(1820)] = { [sym__type_parens] = STATE(6304), [sym__type_tuple] = STATE(6305), [sym__type_unboxed_tuple] = STATE(6306), @@ -225614,7 +226077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(1403), [sym__cond_prefix_tilde] = ACTIONS(1405), }, - [1821] = { + [STATE(1821)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -225702,7 +226165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1822] = { + [STATE(1822)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -225790,7 +226253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1823] = { + [STATE(1823)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -225878,7 +226341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1824] = { + [STATE(1824)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -225966,7 +226429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1825] = { + [STATE(1825)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -226054,7 +226517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1826] = { + [STATE(1826)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -226142,7 +226605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(137), [sym__consym] = ACTIONS(177), }, - [1827] = { + [STATE(1827)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -226230,7 +226693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(2867), [sym__consym] = ACTIONS(2867), }, - [1828] = { + [STATE(1828)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -226318,7 +226781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(2873), [sym__consym] = ACTIONS(2873), }, - [1829] = { + [STATE(1829)] = { [sym__type_parens] = STATE(6627), [sym__type_tuple] = STATE(6631), [sym__type_unboxed_tuple] = STATE(6632), @@ -226405,7 +226868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [1830] = { + [STATE(1830)] = { [sym__type_parens] = STATE(6627), [sym__type_tuple] = STATE(6631), [sym__type_unboxed_tuple] = STATE(6632), @@ -226492,7 +226955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [1831] = { + [STATE(1831)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -226579,7 +227042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1832] = { + [STATE(1832)] = { [sym__type_parens] = STATE(6627), [sym__type_tuple] = STATE(6631), [sym__type_unboxed_tuple] = STATE(6632), @@ -226666,7 +227129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [1833] = { + [STATE(1833)] = { [sym__type_parens] = STATE(6627), [sym__type_tuple] = STATE(6631), [sym__type_unboxed_tuple] = STATE(6632), @@ -226753,7 +227216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [1834] = { + [STATE(1834)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -226840,7 +227303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1835] = { + [STATE(1835)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -226927,7 +227390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1836] = { + [STATE(1836)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -227014,7 +227477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1837] = { + [STATE(1837)] = { [sym__at_type] = STATE(7241), [sym_explicit_type] = STATE(7243), [sym__pat_parens] = STATE(7403), @@ -227101,7 +227564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3531), [sym__consym] = ACTIONS(2751), }, - [1838] = { + [STATE(1838)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -227188,7 +227651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1839] = { + [STATE(1839)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -227274,7 +227737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1840] = { + [STATE(1840)] = { [sym__type_parens] = STATE(6304), [sym__type_tuple] = STATE(6305), [sym__type_unboxed_tuple] = STATE(6306), @@ -227360,7 +227823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(1403), [sym__cond_prefix_tilde] = ACTIONS(1405), }, - [1841] = { + [STATE(1841)] = { [sym__type_parens] = STATE(6304), [sym__type_tuple] = STATE(6305), [sym__type_unboxed_tuple] = STATE(6306), @@ -227446,7 +227909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(1403), [sym__cond_prefix_tilde] = ACTIONS(1405), }, - [1842] = { + [STATE(1842)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -227532,7 +227995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1843] = { + [STATE(1843)] = { [sym__type_parens] = STATE(6304), [sym__type_tuple] = STATE(6305), [sym__type_unboxed_tuple] = STATE(6306), @@ -227618,7 +228081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(3657), [sym__cond_prefix_tilde] = ACTIONS(3660), }, - [1844] = { + [STATE(1844)] = { [sym__type_parens] = STATE(6304), [sym__type_tuple] = STATE(6305), [sym__type_unboxed_tuple] = STATE(6306), @@ -227704,7 +228167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(1403), [sym__cond_prefix_tilde] = ACTIONS(1405), }, - [1845] = { + [STATE(1845)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -227790,7 +228253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1846] = { + [STATE(1846)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -227876,7 +228339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1847] = { + [STATE(1847)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -227962,7 +228425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1848] = { + [STATE(1848)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -228048,7 +228511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1849] = { + [STATE(1849)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -228134,7 +228597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1850] = { + [STATE(1850)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -228220,7 +228683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1851] = { + [STATE(1851)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -228306,7 +228769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3021), [sym__consym] = ACTIONS(2751), }, - [1852] = { + [STATE(1852)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -228392,7 +228855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1853] = { + [STATE(1853)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -228478,7 +228941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1854] = { + [STATE(1854)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -228564,7 +229027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1855] = { + [STATE(1855)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -228650,7 +229113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1856] = { + [STATE(1856)] = { [sym__at_type] = STATE(7241), [sym_explicit_type] = STATE(7243), [sym__pat_parens] = STATE(7403), @@ -228735,7 +229198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3531), [sym__consym] = ACTIONS(2751), }, - [1857] = { + [STATE(1857)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -228820,7 +229283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3021), [sym__consym] = ACTIONS(2751), }, - [1858] = { + [STATE(1858)] = { [sym__at_type] = STATE(7241), [sym_explicit_type] = STATE(7243), [sym__pat_parens] = STATE(7403), @@ -228905,7 +229368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3531), [sym__consym] = ACTIONS(2751), }, - [1859] = { + [STATE(1859)] = { [sym__at_type] = STATE(7241), [sym_explicit_type] = STATE(7243), [sym__pat_parens] = STATE(7403), @@ -228990,7 +229453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3531), [sym__consym] = ACTIONS(2751), }, - [1860] = { + [STATE(1860)] = { [sym__at_type] = STATE(7241), [sym_explicit_type] = STATE(7243), [sym__pat_parens] = STATE(7403), @@ -229075,7 +229538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3531), [sym__consym] = ACTIONS(2751), }, - [1861] = { + [STATE(1861)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -229159,7 +229622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1862] = { + [STATE(1862)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -229243,7 +229706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1863] = { + [STATE(1863)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -229327,7 +229790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1864] = { + [STATE(1864)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -229411,7 +229874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1865] = { + [STATE(1865)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -229495,7 +229958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1866] = { + [STATE(1866)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -229579,7 +230042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1867] = { + [STATE(1867)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -229663,7 +230126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1868] = { + [STATE(1868)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -229747,7 +230210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1869] = { + [STATE(1869)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -229831,7 +230294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1870] = { + [STATE(1870)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -229915,7 +230378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1871] = { + [STATE(1871)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -229999,7 +230462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1872] = { + [STATE(1872)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -230083,7 +230546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1873] = { + [STATE(1873)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9160), [sym_explicit_type] = STATE(2011), @@ -230166,7 +230629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1874] = { + [STATE(1874)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9247), [sym_explicit_type] = STATE(2011), @@ -230249,7 +230712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1875] = { + [STATE(1875)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9204), [sym_explicit_type] = STATE(2011), @@ -230332,7 +230795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1876] = { + [STATE(1876)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -230415,7 +230878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1877] = { + [STATE(1877)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -230498,7 +230961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3021), [sym__consym] = ACTIONS(2751), }, - [1878] = { + [STATE(1878)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -230581,7 +231044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1879] = { + [STATE(1879)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -230664,7 +231127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3021), [sym__consym] = ACTIONS(2751), }, - [1880] = { + [STATE(1880)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -230747,7 +231210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1881] = { + [STATE(1881)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9475), [sym_explicit_type] = STATE(2011), @@ -230830,7 +231293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1882] = { + [STATE(1882)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -230913,7 +231376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1883] = { + [STATE(1883)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9190), [sym_explicit_type] = STATE(2011), @@ -230996,7 +231459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1884] = { + [STATE(1884)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9435), [sym_explicit_type] = STATE(2011), @@ -231079,7 +231542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1885] = { + [STATE(1885)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -231162,7 +231625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3021), [sym__consym] = ACTIONS(2751), }, - [1886] = { + [STATE(1886)] = { [sym__at_type] = STATE(5778), [sym_explicit_type] = STATE(5731), [sym__pat_parens] = STATE(5720), @@ -231245,7 +231708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_no_section_op] = ACTIONS(3021), [sym__consym] = ACTIONS(2751), }, - [1887] = { + [STATE(1887)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9301), [sym_explicit_type] = STATE(2011), @@ -231328,7 +231791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1888] = { + [STATE(1888)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9300), [sym_explicit_type] = STATE(2011), @@ -231411,7 +231874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1889] = { + [STATE(1889)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9273), [sym_explicit_type] = STATE(2011), @@ -231494,7 +231957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1890] = { + [STATE(1890)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9215), [sym_explicit_type] = STATE(2011), @@ -231577,7 +232040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1891] = { + [STATE(1891)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -231659,7 +232122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1892] = { + [STATE(1892)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -231741,7 +232204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1893] = { + [STATE(1893)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -231823,7 +232286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1894] = { + [STATE(1894)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -231905,7 +232368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1895] = { + [STATE(1895)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -231987,7 +232450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1896] = { + [STATE(1896)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -232069,7 +232532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1897] = { + [STATE(1897)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -232151,7 +232614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1898] = { + [STATE(1898)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -232233,7 +232696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1899] = { + [STATE(1899)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -232315,7 +232778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1900] = { + [STATE(1900)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -232397,7 +232860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1901] = { + [STATE(1901)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -232479,7 +232942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1902] = { + [STATE(1902)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -232561,7 +233024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1903] = { + [STATE(1903)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -232643,7 +233106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1904] = { + [STATE(1904)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -232725,7 +233188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1905] = { + [STATE(1905)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -232807,7 +233270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1906] = { + [STATE(1906)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -232889,7 +233352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1907] = { + [STATE(1907)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -232971,7 +233434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1908] = { + [STATE(1908)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -233053,7 +233516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1909] = { + [STATE(1909)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -233135,7 +233598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1910] = { + [STATE(1910)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -233217,7 +233680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1911] = { + [STATE(1911)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -233299,7 +233762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1912] = { + [STATE(1912)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -233381,7 +233844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1913] = { + [STATE(1913)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -233463,7 +233926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1914] = { + [STATE(1914)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -233545,7 +234008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1915] = { + [STATE(1915)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -233627,7 +234090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1916] = { + [STATE(1916)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -233709,7 +234172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1917] = { + [STATE(1917)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -233791,7 +234254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1918] = { + [STATE(1918)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -233873,7 +234336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1919] = { + [STATE(1919)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -233955,7 +234418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1920] = { + [STATE(1920)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -234037,7 +234500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1921] = { + [STATE(1921)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -234119,7 +234582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1922] = { + [STATE(1922)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -234201,7 +234664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1923] = { + [STATE(1923)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -234283,7 +234746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1924] = { + [STATE(1924)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -234365,7 +234828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1925] = { + [STATE(1925)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -234447,7 +234910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1926] = { + [STATE(1926)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -234529,7 +234992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1927] = { + [STATE(1927)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -234611,7 +235074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1928] = { + [STATE(1928)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -234693,7 +235156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1929] = { + [STATE(1929)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -234775,7 +235238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1930] = { + [STATE(1930)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -234857,7 +235320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1931] = { + [STATE(1931)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -234939,7 +235402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1932] = { + [STATE(1932)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -235021,7 +235484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1933] = { + [STATE(1933)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -235103,7 +235566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1934] = { + [STATE(1934)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -235185,7 +235648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1935] = { + [STATE(1935)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -235267,7 +235730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1936] = { + [STATE(1936)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -235349,7 +235812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1937] = { + [STATE(1937)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -235431,7 +235894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1938] = { + [STATE(1938)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -235513,7 +235976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1939] = { + [STATE(1939)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -235595,7 +236058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1940] = { + [STATE(1940)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -235677,7 +236140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1941] = { + [STATE(1941)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -235759,7 +236222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1942] = { + [STATE(1942)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -235841,7 +236304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1943] = { + [STATE(1943)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -235923,7 +236386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1944] = { + [STATE(1944)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -236005,7 +236468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1945] = { + [STATE(1945)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -236087,7 +236550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1946] = { + [STATE(1946)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -236169,7 +236632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1947] = { + [STATE(1947)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -236251,7 +236714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1948] = { + [STATE(1948)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -236333,7 +236796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1949] = { + [STATE(1949)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -236415,7 +236878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1950] = { + [STATE(1950)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -236497,7 +236960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1951] = { + [STATE(1951)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -236578,7 +237041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1952] = { + [STATE(1952)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -236659,7 +237122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1953] = { + [STATE(1953)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -236740,7 +237203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1954] = { + [STATE(1954)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -236821,7 +237284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1955] = { + [STATE(1955)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -236901,7 +237364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1956] = { + [STATE(1956)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -236981,7 +237444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1957] = { + [STATE(1957)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -237061,7 +237524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1958] = { + [STATE(1958)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -237141,7 +237604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1959] = { + [STATE(1959)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -237221,7 +237684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1960] = { + [STATE(1960)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -237301,7 +237764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1961] = { + [STATE(1961)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -237381,7 +237844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1962] = { + [STATE(1962)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -237461,7 +237924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1963] = { + [STATE(1963)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -237541,7 +238004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1964] = { + [STATE(1964)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -237621,7 +238084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1965] = { + [STATE(1965)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -237701,7 +238164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1966] = { + [STATE(1966)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -237781,7 +238244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1967] = { + [STATE(1967)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -237861,7 +238324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1968] = { + [STATE(1968)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -237941,7 +238404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1969] = { + [STATE(1969)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -238021,7 +238484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1970] = { + [STATE(1970)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -238101,7 +238564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1971] = { + [STATE(1971)] = { [sym__at_type] = STATE(7902), [sym_explicit_type] = STATE(1971), [sym__pat_parens] = STATE(7403), @@ -238181,7 +238644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(3969), [sym__cond_prefix_tilde] = ACTIONS(3972), }, - [1972] = { + [STATE(1972)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -238261,7 +238724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1973] = { + [STATE(1973)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -238341,7 +238804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1974] = { + [STATE(1974)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -238421,7 +238884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1975] = { + [STATE(1975)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -238501,7 +238964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1976] = { + [STATE(1976)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -238581,7 +239044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1977] = { + [STATE(1977)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -238661,7 +239124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1978] = { + [STATE(1978)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -238741,7 +239204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1979] = { + [STATE(1979)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -238821,7 +239284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1980] = { + [STATE(1980)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -238901,7 +239364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1981] = { + [STATE(1981)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -238981,7 +239444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1982] = { + [STATE(1982)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -239061,7 +239524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1983] = { + [STATE(1983)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -239141,7 +239604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1984] = { + [STATE(1984)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -239221,7 +239684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1985] = { + [STATE(1985)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -239301,7 +239764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1986] = { + [STATE(1986)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -239381,7 +239844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1987] = { + [STATE(1987)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -239461,7 +239924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1988] = { + [STATE(1988)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -239541,7 +240004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1989] = { + [STATE(1989)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -239621,7 +240084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1990] = { + [STATE(1990)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -239701,7 +240164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1991] = { + [STATE(1991)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -239781,7 +240244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1992] = { + [STATE(1992)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -239861,7 +240324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1993] = { + [STATE(1993)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -239941,7 +240404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1994] = { + [STATE(1994)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -240021,7 +240484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1995] = { + [STATE(1995)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -240101,7 +240564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1996] = { + [STATE(1996)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -240181,7 +240644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1997] = { + [STATE(1997)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -240261,7 +240724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1998] = { + [STATE(1998)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -240341,7 +240804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [1999] = { + [STATE(1999)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -240421,7 +240884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2000] = { + [STATE(2000)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -240501,7 +240964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2001] = { + [STATE(2001)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -240581,7 +241044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2002] = { + [STATE(2002)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -240661,7 +241124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2003] = { + [STATE(2003)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -240741,7 +241204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2004] = { + [STATE(2004)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -240821,7 +241284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2005] = { + [STATE(2005)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -240901,7 +241364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2006] = { + [STATE(2006)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -240981,7 +241444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2007] = { + [STATE(2007)] = { [sym__type_parens] = STATE(6627), [sym__type_tuple] = STATE(6631), [sym__type_unboxed_tuple] = STATE(6632), @@ -241061,7 +241524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2008] = { + [STATE(2008)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -241141,7 +241604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2009] = { + [STATE(2009)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -241221,7 +241684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2010] = { + [STATE(2010)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -241301,7 +241764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2011] = { + [STATE(2011)] = { [sym__at_type] = STATE(7902), [sym_explicit_type] = STATE(1971), [sym__pat_parens] = STATE(7403), @@ -241381,7 +241844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2012] = { + [STATE(2012)] = { [sym__type_parens] = STATE(6627), [sym__type_tuple] = STATE(6631), [sym__type_unboxed_tuple] = STATE(6632), @@ -241461,7 +241924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(4100), [sym__cond_prefix_at] = ACTIONS(4103), }, - [2013] = { + [STATE(2013)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -241541,7 +242004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2014] = { + [STATE(2014)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -241621,7 +242084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2015] = { + [STATE(2015)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -241701,7 +242164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2016] = { + [STATE(2016)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -241781,7 +242244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2017] = { + [STATE(2017)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -241861,7 +242324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2018] = { + [STATE(2018)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -241941,7 +242404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2019] = { + [STATE(2019)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -242021,7 +242484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2020] = { + [STATE(2020)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9465), [sym_explicit_type] = STATE(2011), @@ -242100,7 +242563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2021] = { + [STATE(2021)] = { [sym_alternative] = STATE(9214), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -242179,7 +242642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2022] = { + [STATE(2022)] = { [sym_alternative] = STATE(9298), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -242258,7 +242721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2023] = { + [STATE(2023)] = { [sym__type_parens] = STATE(7563), [sym__type_tuple] = STATE(7568), [sym__type_unboxed_tuple] = STATE(7569), @@ -242337,7 +242800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2024] = { + [STATE(2024)] = { [sym__type_parens] = STATE(7563), [sym__type_tuple] = STATE(7568), [sym__type_unboxed_tuple] = STATE(7569), @@ -242416,7 +242879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2025] = { + [STATE(2025)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -242495,7 +242958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2026] = { + [STATE(2026)] = { [sym_alternative] = STATE(9272), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -242574,7 +243037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2027] = { + [STATE(2027)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9443), [sym_explicit_type] = STATE(2011), @@ -242653,7 +243116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2028] = { + [STATE(2028)] = { [sym__type_parens] = STATE(7563), [sym__type_tuple] = STATE(7568), [sym__type_unboxed_tuple] = STATE(7569), @@ -242732,7 +243195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2029] = { + [STATE(2029)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -242811,7 +243274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2030] = { + [STATE(2030)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9335), [sym_explicit_type] = STATE(2011), @@ -242890,7 +243353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2031] = { + [STATE(2031)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9483), [sym_explicit_type] = STATE(2011), @@ -242969,7 +243432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2032] = { + [STATE(2032)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9169), [sym_explicit_type] = STATE(2011), @@ -243048,7 +243511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2033] = { + [STATE(2033)] = { [sym_alternative] = STATE(9188), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -243127,7 +243590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2034] = { + [STATE(2034)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9197), [sym_explicit_type] = STATE(2011), @@ -243206,7 +243669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2035] = { + [STATE(2035)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -243285,7 +243748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2036] = { + [STATE(2036)] = { [sym_alternative] = STATE(9474), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -243364,7 +243827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2037] = { + [STATE(2037)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9223), [sym_explicit_type] = STATE(2011), @@ -243443,7 +243906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2038] = { + [STATE(2038)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9255), [sym_explicit_type] = STATE(2011), @@ -243522,7 +243985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2039] = { + [STATE(2039)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10697), [sym_explicit_type] = STATE(2011), @@ -243601,7 +244064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2040] = { + [STATE(2040)] = { [sym__type_parens] = STATE(7563), [sym__type_tuple] = STATE(7568), [sym__type_unboxed_tuple] = STATE(7569), @@ -243680,7 +244143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2041] = { + [STATE(2041)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9281), [sym_explicit_type] = STATE(2011), @@ -243759,7 +244222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2042] = { + [STATE(2042)] = { [sym_alternative] = STATE(9189), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -243838,7 +244301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2043] = { + [STATE(2043)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9308), [sym_explicit_type] = STATE(2011), @@ -243917,7 +244380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2044] = { + [STATE(2044)] = { [sym_alternative] = STATE(9246), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -243996,7 +244459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2045] = { + [STATE(2045)] = { [sym_alternative] = STATE(9299), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -244075,7 +244538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2046] = { + [STATE(2046)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -244154,7 +244617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2047] = { + [STATE(2047)] = { [sym_alternative] = STATE(9159), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -244233,7 +244696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2048] = { + [STATE(2048)] = { [sym_alternative] = STATE(9434), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -244312,7 +244775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2049] = { + [STATE(2049)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -244390,7 +244853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2050] = { + [STATE(2050)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -244468,7 +244931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2051] = { + [STATE(2051)] = { [sym__at_type] = STATE(8026), [sym_explicit_type] = STATE(2082), [sym__pat_parens] = STATE(5720), @@ -244546,7 +245009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2052] = { + [STATE(2052)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -244624,7 +245087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2053] = { + [STATE(2053)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -244702,7 +245165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2054] = { + [STATE(2054)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -244780,7 +245243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2055] = { + [STATE(2055)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -244858,7 +245321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2056] = { + [STATE(2056)] = { [sym__at_type] = STATE(8026), [sym_explicit_type] = STATE(2051), [sym__pat_parens] = STATE(5720), @@ -244936,7 +245399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2057] = { + [STATE(2057)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -245014,7 +245477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2058] = { + [STATE(2058)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -245092,7 +245555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2059] = { + [STATE(2059)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -245170,7 +245633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2060] = { + [STATE(2060)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -245248,7 +245711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2061] = { + [STATE(2061)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -245326,7 +245789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2062] = { + [STATE(2062)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -245404,7 +245867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2063] = { + [STATE(2063)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -245482,7 +245945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2064] = { + [STATE(2064)] = { [sym__at_type] = STATE(8026), [sym_explicit_type] = STATE(2051), [sym__pat_parens] = STATE(5720), @@ -245560,7 +246023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2065] = { + [STATE(2065)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -245638,7 +246101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2066] = { + [STATE(2066)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -245716,7 +246179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2067] = { + [STATE(2067)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -245794,7 +246257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2068] = { + [STATE(2068)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -245872,7 +246335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2069] = { + [STATE(2069)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -245950,7 +246413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2070] = { + [STATE(2070)] = { [sym__at_type] = STATE(8026), [sym_explicit_type] = STATE(2051), [sym__pat_parens] = STATE(5720), @@ -246028,7 +246491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2071] = { + [STATE(2071)] = { [sym__at_type] = STATE(8026), [sym_explicit_type] = STATE(2051), [sym__pat_parens] = STATE(5720), @@ -246106,7 +246569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2072] = { + [STATE(2072)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -246184,7 +246647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2073] = { + [STATE(2073)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -246262,7 +246725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2074] = { + [STATE(2074)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -246340,7 +246803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2075] = { + [STATE(2075)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -246418,7 +246881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2076] = { + [STATE(2076)] = { [sym__at_type] = STATE(8026), [sym_explicit_type] = STATE(2051), [sym__pat_parens] = STATE(5720), @@ -246496,7 +246959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2077] = { + [STATE(2077)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -246574,7 +247037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2078] = { + [STATE(2078)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -246652,7 +247115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2079] = { + [STATE(2079)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -246730,7 +247193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2080] = { + [STATE(2080)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -246808,7 +247271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2081] = { + [STATE(2081)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -246886,7 +247349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2082] = { + [STATE(2082)] = { [sym__at_type] = STATE(8026), [sym_explicit_type] = STATE(2082), [sym__pat_parens] = STATE(5720), @@ -246964,7 +247427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(3969), [sym__cond_prefix_tilde] = ACTIONS(3972), }, - [2083] = { + [STATE(2083)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -247042,7 +247505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2084] = { + [STATE(2084)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -247120,7 +247583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2085] = { + [STATE(2085)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -247198,7 +247661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2086] = { + [STATE(2086)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -247276,7 +247739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2087] = { + [STATE(2087)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -247354,7 +247817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2088] = { + [STATE(2088)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -247432,7 +247895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2089] = { + [STATE(2089)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -247510,7 +247973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2090] = { + [STATE(2090)] = { [sym__at_type] = STATE(8026), [sym_explicit_type] = STATE(2051), [sym__pat_parens] = STATE(5720), @@ -247588,7 +248051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2091] = { + [STATE(2091)] = { [sym__at_type] = STATE(8026), [sym_explicit_type] = STATE(2051), [sym__pat_parens] = STATE(5720), @@ -247666,7 +248129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2092] = { + [STATE(2092)] = { [sym__at_type] = STATE(8026), [sym_explicit_type] = STATE(2051), [sym__pat_parens] = STATE(5720), @@ -247744,7 +248207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2093] = { + [STATE(2093)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -247822,7 +248285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2094] = { + [STATE(2094)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -247900,7 +248363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2095] = { + [STATE(2095)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -247978,7 +248441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2096] = { + [STATE(2096)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -248056,7 +248519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2097] = { + [STATE(2097)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -248134,7 +248597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2098] = { + [STATE(2098)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -248212,7 +248675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2099] = { + [STATE(2099)] = { [sym__at_type] = STATE(8026), [sym_explicit_type] = STATE(2051), [sym__pat_parens] = STATE(5720), @@ -248290,7 +248753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2100] = { + [STATE(2100)] = { [sym__at_type] = STATE(8026), [sym_explicit_type] = STATE(2051), [sym__pat_parens] = STATE(5720), @@ -248368,7 +248831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2101] = { + [STATE(2101)] = { [sym__at_type] = STATE(8026), [sym_explicit_type] = STATE(2051), [sym__pat_parens] = STATE(5720), @@ -248446,7 +248909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2102] = { + [STATE(2102)] = { [sym__at_type] = STATE(8026), [sym_explicit_type] = STATE(2051), [sym__pat_parens] = STATE(5720), @@ -248524,7 +248987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2103] = { + [STATE(2103)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(10695), [sym_explicit_type] = STATE(2011), @@ -248601,7 +249064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2104] = { + [STATE(2104)] = { [sym__type_parens] = STATE(7080), [sym__type_tuple] = STATE(7081), [sym__type_unboxed_tuple] = STATE(7082), @@ -248678,7 +249141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(1403), [sym__cond_prefix_tilde] = ACTIONS(1405), }, - [2105] = { + [STATE(2105)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9332), [sym_explicit_type] = STATE(2011), @@ -248755,7 +249218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2106] = { + [STATE(2106)] = { [sym__type_parens] = STATE(7080), [sym__type_tuple] = STATE(7081), [sym__type_unboxed_tuple] = STATE(7082), @@ -248832,7 +249295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(1403), [sym__cond_prefix_tilde] = ACTIONS(1405), }, - [2107] = { + [STATE(2107)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -248909,7 +249372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2108] = { + [STATE(2108)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -248986,7 +249449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2109] = { + [STATE(2109)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9441), [sym_explicit_type] = STATE(2011), @@ -249063,7 +249526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2110] = { + [STATE(2110)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -249140,7 +249603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2111] = { + [STATE(2111)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9480), [sym_explicit_type] = STATE(2011), @@ -249217,7 +249680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2112] = { + [STATE(2112)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -249294,7 +249757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2113] = { + [STATE(2113)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9166), [sym_explicit_type] = STATE(2011), @@ -249371,7 +249834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2114] = { + [STATE(2114)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -249448,7 +249911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(1403), [sym__cond_prefix_tilde] = ACTIONS(1405), }, - [2115] = { + [STATE(2115)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9195), [sym_explicit_type] = STATE(2011), @@ -249525,7 +249988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2116] = { + [STATE(2116)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9221), [sym_explicit_type] = STATE(2011), @@ -249602,7 +250065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2117] = { + [STATE(2117)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9253), [sym_explicit_type] = STATE(2011), @@ -249679,7 +250142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2118] = { + [STATE(2118)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9279), [sym_explicit_type] = STATE(2011), @@ -249756,7 +250219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2119] = { + [STATE(2119)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9306), [sym_explicit_type] = STATE(2011), @@ -249833,7 +250296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2120] = { + [STATE(2120)] = { [sym__at_type] = STATE(7902), [sym__nalt] = STATE(9463), [sym_explicit_type] = STATE(2011), @@ -249910,7 +250373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2121] = { + [STATE(2121)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -249986,7 +250449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2122] = { + [STATE(2122)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -250062,7 +250525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2123] = { + [STATE(2123)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -250138,7 +250601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2124] = { + [STATE(2124)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -250214,7 +250677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2125] = { + [STATE(2125)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -250290,7 +250753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2126] = { + [STATE(2126)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -250366,7 +250829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2127] = { + [STATE(2127)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -250442,7 +250905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2128] = { + [STATE(2128)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -250518,7 +250981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2129] = { + [STATE(2129)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -250594,7 +251057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2130] = { + [STATE(2130)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -250670,7 +251133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2131] = { + [STATE(2131)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -250746,7 +251209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2132] = { + [STATE(2132)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -250822,7 +251285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2133] = { + [STATE(2133)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -250898,7 +251361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2134] = { + [STATE(2134)] = { [sym__type_parens] = STATE(7451), [sym__type_tuple] = STATE(7452), [sym__type_unboxed_tuple] = STATE(7453), @@ -250974,7 +251437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2135] = { + [STATE(2135)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -251050,7 +251513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2136] = { + [STATE(2136)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -251126,7 +251589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2137] = { + [STATE(2137)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -251202,7 +251665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2138] = { + [STATE(2138)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -251278,7 +251741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2139] = { + [STATE(2139)] = { [sym__type_parens] = STATE(7451), [sym__type_tuple] = STATE(7452), [sym__type_unboxed_tuple] = STATE(7453), @@ -251354,7 +251817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2140] = { + [STATE(2140)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -251430,7 +251893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2141] = { + [STATE(2141)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -251506,7 +251969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2142] = { + [STATE(2142)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -251582,7 +252045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2143] = { + [STATE(2143)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -251658,7 +252121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2144] = { + [STATE(2144)] = { [sym__type_parens] = STATE(7502), [sym__type_tuple] = STATE(7513), [sym__type_unboxed_tuple] = STATE(7515), @@ -251734,7 +252197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2145] = { + [STATE(2145)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -251810,7 +252273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2146] = { + [STATE(2146)] = { [sym__type_parens] = STATE(7451), [sym__type_tuple] = STATE(7452), [sym__type_unboxed_tuple] = STATE(7453), @@ -251886,7 +252349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2147] = { + [STATE(2147)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -251962,7 +252425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2148] = { + [STATE(2148)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -252038,7 +252501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2149] = { + [STATE(2149)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -252114,7 +252577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2150] = { + [STATE(2150)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -252190,7 +252653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2151] = { + [STATE(2151)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -252266,7 +252729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2152] = { + [STATE(2152)] = { [sym__type_parens] = STATE(7502), [sym__type_tuple] = STATE(7513), [sym__type_unboxed_tuple] = STATE(7515), @@ -252342,7 +252805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2153] = { + [STATE(2153)] = { [sym__at_type] = STATE(7902), [sym_explicit_type] = STATE(2011), [sym__pat_parens] = STATE(7403), @@ -252418,7 +252881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2154] = { + [STATE(2154)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -252494,7 +252957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2155] = { + [STATE(2155)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -252570,7 +253033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2156] = { + [STATE(2156)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -252646,7 +253109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2157] = { + [STATE(2157)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -252722,7 +253185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2158] = { + [STATE(2158)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -252798,7 +253261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2159] = { + [STATE(2159)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -252874,7 +253337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2160] = { + [STATE(2160)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -252950,7 +253413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2161] = { + [STATE(2161)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -253026,7 +253489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2162] = { + [STATE(2162)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -253102,7 +253565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2163] = { + [STATE(2163)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -253178,7 +253641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2164] = { + [STATE(2164)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -253254,7 +253717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2165] = { + [STATE(2165)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -253330,7 +253793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2166] = { + [STATE(2166)] = { [sym__type_parens] = STATE(7451), [sym__type_tuple] = STATE(7452), [sym__type_unboxed_tuple] = STATE(7453), @@ -253406,7 +253869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2167] = { + [STATE(2167)] = { [sym__at_type] = STATE(7902), [sym_explicit_type] = STATE(2011), [sym__pat_parens] = STATE(7403), @@ -253482,7 +253945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2168] = { + [STATE(2168)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -253558,7 +254021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2169] = { + [STATE(2169)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -253634,7 +254097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2170] = { + [STATE(2170)] = { [sym__type_parens] = STATE(7502), [sym__type_tuple] = STATE(7513), [sym__type_unboxed_tuple] = STATE(7515), @@ -253710,7 +254173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2171] = { + [STATE(2171)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -253786,7 +254249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2172] = { + [STATE(2172)] = { [sym__type_parens] = STATE(7502), [sym__type_tuple] = STATE(7513), [sym__type_unboxed_tuple] = STATE(7515), @@ -253862,7 +254325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2173] = { + [STATE(2173)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -253937,7 +254400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2174] = { + [STATE(2174)] = { [sym__type_parens] = STATE(7502), [sym__type_tuple] = STATE(7513), [sym__type_unboxed_tuple] = STATE(7515), @@ -254012,7 +254475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2175] = { + [STATE(2175)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -254087,7 +254550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2176] = { + [STATE(2176)] = { [sym_alternative] = STATE(9439), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -254162,7 +254625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2177] = { + [STATE(2177)] = { [sym_alternative] = STATE(9478), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -254237,7 +254700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2178] = { + [STATE(2178)] = { [sym_alternative] = STATE(9163), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -254312,7 +254775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2179] = { + [STATE(2179)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -254387,7 +254850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2180] = { + [STATE(2180)] = { [sym_alternative] = STATE(9193), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -254462,7 +254925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2181] = { + [STATE(2181)] = { [sym_alternative] = STATE(9219), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -254537,7 +255000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2182] = { + [STATE(2182)] = { [sym_alternative] = STATE(9251), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -254612,7 +255075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2183] = { + [STATE(2183)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -254687,7 +255150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2184] = { + [STATE(2184)] = { [sym_alternative] = STATE(9330), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -254762,7 +255225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2185] = { + [STATE(2185)] = { [sym_alternative] = STATE(9277), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -254837,7 +255300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2186] = { + [STATE(2186)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -254912,7 +255375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2187] = { + [STATE(2187)] = { [sym__type_parens] = STATE(7502), [sym__type_tuple] = STATE(7513), [sym__type_unboxed_tuple] = STATE(7515), @@ -254987,7 +255450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(4100), [sym__cond_prefix_at] = ACTIONS(4103), }, - [2188] = { + [STATE(2188)] = { [sym_alternative] = STATE(9304), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -255062,7 +255525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2189] = { + [STATE(2189)] = { [sym_alternative] = STATE(9454), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -255137,7 +255600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2190] = { + [STATE(2190)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -255212,7 +255675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2191] = { + [STATE(2191)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -255286,7 +255749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2192] = { + [STATE(2192)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -255360,7 +255823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2193] = { + [STATE(2193)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -255434,7 +255897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2194] = { + [STATE(2194)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -255508,7 +255971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2195] = { + [STATE(2195)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -255582,7 +256045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2196] = { + [STATE(2196)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -255656,7 +256119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2197] = { + [STATE(2197)] = { [sym__type_parens] = STATE(7689), [sym__type_tuple] = STATE(7690), [sym__type_unboxed_tuple] = STATE(7692), @@ -255730,7 +256193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2198] = { + [STATE(2198)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -255804,7 +256267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2199] = { + [STATE(2199)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -255878,7 +256341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2200] = { + [STATE(2200)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -255952,7 +256415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2201] = { + [STATE(2201)] = { [sym__type_parens] = STATE(7689), [sym__type_tuple] = STATE(7690), [sym__type_unboxed_tuple] = STATE(7692), @@ -256026,7 +256489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2202] = { + [STATE(2202)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -256100,7 +256563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2203] = { + [STATE(2203)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -256174,7 +256637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2204] = { + [STATE(2204)] = { [sym__type_parens] = STATE(7563), [sym__type_tuple] = STATE(7568), [sym__type_unboxed_tuple] = STATE(7569), @@ -256248,7 +256711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(4100), [sym__cond_prefix_at] = ACTIONS(4103), }, - [2205] = { + [STATE(2205)] = { [sym__type_parens] = STATE(7689), [sym__type_tuple] = STATE(7690), [sym__type_unboxed_tuple] = STATE(7692), @@ -256322,7 +256785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2206] = { + [STATE(2206)] = { [sym__type_parens] = STATE(7689), [sym__type_tuple] = STATE(7690), [sym__type_unboxed_tuple] = STATE(7692), @@ -256396,7 +256859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2207] = { + [STATE(2207)] = { [sym__type_parens] = STATE(7563), [sym__type_tuple] = STATE(7568), [sym__type_unboxed_tuple] = STATE(7569), @@ -256470,7 +256933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2208] = { + [STATE(2208)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -256544,7 +257007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2209] = { + [STATE(2209)] = { [sym_alternative] = STATE(9163), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -256617,7 +257080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2210] = { + [STATE(2210)] = { [sym_alternative] = STATE(9454), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -256690,7 +257153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2211] = { + [STATE(2211)] = { [sym__type_parens] = STATE(7689), [sym__type_tuple] = STATE(7690), [sym__type_unboxed_tuple] = STATE(7692), @@ -256763,7 +257226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2212] = { + [STATE(2212)] = { [sym__type_parens] = STATE(7689), [sym__type_tuple] = STATE(7690), [sym__type_unboxed_tuple] = STATE(7692), @@ -256836,7 +257299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(4100), [sym__cond_prefix_at] = ACTIONS(4103), }, - [2213] = { + [STATE(2213)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -256909,7 +257372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2214] = { + [STATE(2214)] = { [sym_alternative] = STATE(10660), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -256982,7 +257445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2215] = { + [STATE(2215)] = { [sym_alternative] = STATE(9330), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -257055,7 +257518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2216] = { + [STATE(2216)] = { [sym_alternative] = STATE(9439), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -257128,7 +257591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2217] = { + [STATE(2217)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -257201,7 +257664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(4100), [sym__cond_prefix_at] = ACTIONS(4103), }, - [2218] = { + [STATE(2218)] = { [sym_alternative] = STATE(9478), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -257274,7 +257737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2219] = { + [STATE(2219)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -257347,7 +257810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2220] = { + [STATE(2220)] = { [sym_alternative] = STATE(9193), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -257420,7 +257883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2221] = { + [STATE(2221)] = { [sym_alternative] = STATE(9219), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -257493,7 +257956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2222] = { + [STATE(2222)] = { [sym_alternative] = STATE(9251), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -257566,7 +258029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2223] = { + [STATE(2223)] = { [sym_alternative] = STATE(9277), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -257639,7 +258102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2224] = { + [STATE(2224)] = { [sym_alternative] = STATE(9304), [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), @@ -257712,7 +258175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2225] = { + [STATE(2225)] = { [sym__fun_arrow] = STATE(1634), [sym_modifier] = STATE(9947), [sym__linear_fun_arrow] = STATE(1635), @@ -257784,7 +258247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4566), [sym__consym] = ACTIONS(4566), }, - [2226] = { + [STATE(2226)] = { [sym__pat_parens] = STATE(7042), [sym__pat_tuple] = STATE(7045), [sym__pat_unboxed_tuple] = STATE(7160), @@ -257856,7 +258319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2227] = { + [STATE(2227)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -257928,7 +258391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2228] = { + [STATE(2228)] = { [sym__fun_arrow] = STATE(1634), [sym_modifier] = STATE(9947), [sym__linear_fun_arrow] = STATE(1635), @@ -258000,7 +258463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4582), [sym__consym] = ACTIONS(4582), }, - [2229] = { + [STATE(2229)] = { [sym__fun_arrow] = STATE(1634), [sym_modifier] = STATE(9947), [sym__linear_fun_arrow] = STATE(1635), @@ -258072,7 +258535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4586), [sym__consym] = ACTIONS(4586), }, - [2230] = { + [STATE(2230)] = { [sym__fun_arrow] = STATE(1634), [sym_modifier] = STATE(9947), [sym__linear_fun_arrow] = STATE(1635), @@ -258144,7 +258607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4590), [sym__consym] = ACTIONS(4590), }, - [2231] = { + [STATE(2231)] = { [sym__fun_arrow] = STATE(1634), [sym_modifier] = STATE(9947), [sym__linear_fun_arrow] = STATE(1635), @@ -258216,7 +258679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4594), [sym__consym] = ACTIONS(4594), }, - [2232] = { + [STATE(2232)] = { [sym__fun_arrow] = STATE(1634), [sym_modifier] = STATE(9947), [sym__linear_fun_arrow] = STATE(1635), @@ -258288,7 +258751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4598), [sym__consym] = ACTIONS(4598), }, - [2233] = { + [STATE(2233)] = { [sym__fun_arrow] = STATE(1634), [sym_modifier] = STATE(9947), [sym__linear_fun_arrow] = STATE(1635), @@ -258360,7 +258823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4586), [sym__consym] = ACTIONS(4586), }, - [2234] = { + [STATE(2234)] = { [sym__fun_arrow] = STATE(1634), [sym_modifier] = STATE(9947), [sym__linear_fun_arrow] = STATE(1635), @@ -258432,7 +258895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4602), [sym__consym] = ACTIONS(4602), }, - [2235] = { + [STATE(2235)] = { [sym__fun_arrow] = STATE(1634), [sym_modifier] = STATE(9947), [sym__linear_fun_arrow] = STATE(1635), @@ -258504,7 +258967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4590), [sym__consym] = ACTIONS(4590), }, - [2236] = { + [STATE(2236)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -258575,7 +259038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2237] = { + [STATE(2237)] = { [sym__qual_dot] = STATE(8571), [sym__tight_dot] = STATE(8571), [sym_variable] = ACTIONS(4606), @@ -258646,7 +259109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4608), [sym__consym] = ACTIONS(4608), }, - [2238] = { + [STATE(2238)] = { [sym__qual_dot] = STATE(8571), [sym__tight_dot] = STATE(8571), [sym_variable] = ACTIONS(4614), @@ -258717,7 +259180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4616), [sym__consym] = ACTIONS(4616), }, - [2239] = { + [STATE(2239)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -258788,7 +259251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2240] = { + [STATE(2240)] = { [sym__qual_dot] = STATE(10878), [sym__tight_dot] = STATE(10878), [sym_variable] = ACTIONS(4614), @@ -258859,7 +259322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4616), [sym__consym] = ACTIONS(4616), }, - [2241] = { + [STATE(2241)] = { [sym__qual_dot] = STATE(10878), [sym__tight_dot] = STATE(10878), [sym_variable] = ACTIONS(4622), @@ -258930,7 +259393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4624), [sym__consym] = ACTIONS(4624), }, - [2242] = { + [STATE(2242)] = { [sym__qual_dot] = STATE(8571), [sym__tight_dot] = STATE(8571), [sym_variable] = ACTIONS(4626), @@ -259001,7 +259464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4628), [sym__consym] = ACTIONS(4628), }, - [2243] = { + [STATE(2243)] = { [sym__qual_dot] = STATE(10878), [sym__tight_dot] = STATE(10878), [sym_variable] = ACTIONS(4606), @@ -259072,7 +259535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4608), [sym__consym] = ACTIONS(4608), }, - [2244] = { + [STATE(2244)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -259143,7 +259606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2245] = { + [STATE(2245)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -259214,7 +259677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2246] = { + [STATE(2246)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -259285,7 +259748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2247] = { + [STATE(2247)] = { [sym__qual_dot] = STATE(10878), [sym__tight_dot] = STATE(10878), [sym_variable] = ACTIONS(4626), @@ -259356,7 +259819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4628), [sym__consym] = ACTIONS(4628), }, - [2248] = { + [STATE(2248)] = { [sym__type_parens] = STATE(7270), [sym__type_tuple] = STATE(7271), [sym__type_unboxed_tuple] = STATE(7273), @@ -259427,7 +259890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_splice] = ACTIONS(83), [sym__cond_prefix_at] = ACTIONS(325), }, - [2249] = { + [STATE(2249)] = { [sym__qual_dot] = STATE(8571), [sym__tight_dot] = STATE(8571), [sym_variable] = ACTIONS(4622), @@ -259498,7 +259961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4624), [sym__consym] = ACTIONS(4624), }, - [2250] = { + [STATE(2250)] = { [sym__qual_dot] = STATE(10878), [sym__tight_dot] = STATE(10878), [sym_variable] = ACTIONS(4638), @@ -259569,7 +260032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4640), [sym__consym] = ACTIONS(4640), }, - [2251] = { + [STATE(2251)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -259639,7 +260102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2252] = { + [STATE(2252)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -259709,7 +260172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2253] = { + [STATE(2253)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -259779,7 +260242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2254] = { + [STATE(2254)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -259849,7 +260312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2255] = { + [STATE(2255)] = { [sym__pat_parens] = STATE(6781), [sym__pat_tuple] = STATE(6783), [sym__pat_unboxed_tuple] = STATE(6784), @@ -259919,7 +260382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2256] = { + [STATE(2256)] = { [sym__pat_parens] = STATE(6781), [sym__pat_tuple] = STATE(6783), [sym__pat_unboxed_tuple] = STATE(6784), @@ -259989,7 +260452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2257] = { + [STATE(2257)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -260059,7 +260522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2258] = { + [STATE(2258)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -260129,7 +260592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2259] = { + [STATE(2259)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -260199,7 +260662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2260] = { + [STATE(2260)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -260269,7 +260732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2261] = { + [STATE(2261)] = { [sym__pat_parens] = STATE(6781), [sym__pat_tuple] = STATE(6783), [sym__pat_unboxed_tuple] = STATE(6784), @@ -260339,7 +260802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2262] = { + [STATE(2262)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -260409,7 +260872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2263] = { + [STATE(2263)] = { [sym__guards] = STATE(12427), [sym__simple_bind_match] = STATE(9088), [sym__bind_match] = STATE(9107), @@ -260479,7 +260942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4652), [sym__consym] = ACTIONS(4652), }, - [2264] = { + [STATE(2264)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -260549,7 +261012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2265] = { + [STATE(2265)] = { [sym__pat_parens] = STATE(6781), [sym__pat_tuple] = STATE(6783), [sym__pat_unboxed_tuple] = STATE(6784), @@ -260619,7 +261082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2266] = { + [STATE(2266)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -260689,7 +261152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2267] = { + [STATE(2267)] = { [sym__pat_parens] = STATE(7042), [sym__pat_tuple] = STATE(7045), [sym__pat_unboxed_tuple] = STATE(7160), @@ -260759,7 +261222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2268] = { + [STATE(2268)] = { [sym__pat_parens] = STATE(7042), [sym__pat_tuple] = STATE(7045), [sym__pat_unboxed_tuple] = STATE(7160), @@ -260829,7 +261292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2269] = { + [STATE(2269)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -260899,7 +261362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2270] = { + [STATE(2270)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -260969,7 +261432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2271] = { + [STATE(2271)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -261039,7 +261502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2272] = { + [STATE(2272)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -261109,7 +261572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2273] = { + [STATE(2273)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -261179,7 +261642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2274] = { + [STATE(2274)] = { [sym__pat_parens] = STATE(6596), [sym__pat_tuple] = STATE(6600), [sym__pat_unboxed_tuple] = STATE(6615), @@ -261249,7 +261712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2275] = { + [STATE(2275)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -261319,7 +261782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2276] = { + [STATE(2276)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -261389,7 +261852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2277] = { + [STATE(2277)] = { [sym__pat_parens] = STATE(7042), [sym__pat_tuple] = STATE(7045), [sym__pat_unboxed_tuple] = STATE(7160), @@ -261459,7 +261922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2278] = { + [STATE(2278)] = { [sym__pat_parens] = STATE(7042), [sym__pat_tuple] = STATE(7045), [sym__pat_unboxed_tuple] = STATE(7160), @@ -261529,7 +261992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2279] = { + [STATE(2279)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -261599,7 +262062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2280] = { + [STATE(2280)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -261669,7 +262132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2281] = { + [STATE(2281)] = { [sym__pat_parens] = STATE(6781), [sym__pat_tuple] = STATE(6783), [sym__pat_unboxed_tuple] = STATE(6784), @@ -261739,7 +262202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2282] = { + [STATE(2282)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -261809,7 +262272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2283] = { + [STATE(2283)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -261879,7 +262342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2284] = { + [STATE(2284)] = { [sym__pat_parens] = STATE(6781), [sym__pat_tuple] = STATE(6783), [sym__pat_unboxed_tuple] = STATE(6784), @@ -261949,7 +262412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2285] = { + [STATE(2285)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -262019,7 +262482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2286] = { + [STATE(2286)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -262089,7 +262552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2287] = { + [STATE(2287)] = { [sym__pat_parens] = STATE(7042), [sym__pat_tuple] = STATE(7045), [sym__pat_unboxed_tuple] = STATE(7160), @@ -262159,7 +262622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2288] = { + [STATE(2288)] = { [sym__pat_parens] = STATE(7042), [sym__pat_tuple] = STATE(7045), [sym__pat_unboxed_tuple] = STATE(7160), @@ -262229,7 +262692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2289] = { + [STATE(2289)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -262299,7 +262762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2290] = { + [STATE(2290)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -262369,7 +262832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2291] = { + [STATE(2291)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -262439,7 +262902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2292] = { + [STATE(2292)] = { [sym__pat_parens] = STATE(7403), [sym__pat_tuple] = STATE(7404), [sym__pat_unboxed_tuple] = STATE(7407), @@ -262509,7 +262972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2293] = { + [STATE(2293)] = { [sym__pat_parens] = STATE(6781), [sym__pat_tuple] = STATE(6783), [sym__pat_unboxed_tuple] = STATE(6784), @@ -262579,7 +263042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2294] = { + [STATE(2294)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -262649,7 +263112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2295] = { + [STATE(2295)] = { [sym__pat_parens] = STATE(7042), [sym__pat_tuple] = STATE(7045), [sym__pat_unboxed_tuple] = STATE(7160), @@ -262719,7 +263182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2296] = { + [STATE(2296)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -262789,7 +263252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2297] = { + [STATE(2297)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -262859,7 +263322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2298] = { + [STATE(2298)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -262929,7 +263392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2299] = { + [STATE(2299)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -262999,7 +263462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2300] = { + [STATE(2300)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -263069,7 +263532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2301] = { + [STATE(2301)] = { [sym__pat_parens] = STATE(5720), [sym__pat_tuple] = STATE(5723), [sym__pat_unboxed_tuple] = STATE(5769), @@ -263139,7 +263602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_tight_tilde] = ACTIONS(89), [sym__cond_prefix_tilde] = ACTIONS(91), }, - [2302] = { + [STATE(2302)] = { [sym_variable] = ACTIONS(4679), [anon_sym_SEMI] = ACTIONS(4681), [anon_sym_let] = ACTIONS(4679), @@ -263207,7 +263670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4681), [sym__consym] = ACTIONS(4681), }, - [2303] = { + [STATE(2303)] = { [sym_variable] = ACTIONS(4683), [anon_sym_SEMI] = ACTIONS(4685), [anon_sym_let] = ACTIONS(4683), @@ -263275,7 +263738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4685), [sym__consym] = ACTIONS(4685), }, - [2304] = { + [STATE(2304)] = { [sym_variable] = ACTIONS(4687), [anon_sym_SEMI] = ACTIONS(4689), [anon_sym_let] = ACTIONS(4687), @@ -263343,7 +263806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4689), [sym__consym] = ACTIONS(4689), }, - [2305] = { + [STATE(2305)] = { [sym_variable] = ACTIONS(4691), [anon_sym_SEMI] = ACTIONS(4693), [anon_sym_let] = ACTIONS(4691), @@ -263411,7 +263874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4693), [sym__consym] = ACTIONS(4693), }, - [2306] = { + [STATE(2306)] = { [sym_variable] = ACTIONS(4695), [anon_sym_SEMI] = ACTIONS(4697), [anon_sym_let] = ACTIONS(4695), @@ -263479,7 +263942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4697), [sym__consym] = ACTIONS(4697), }, - [2307] = { + [STATE(2307)] = { [sym_variable] = ACTIONS(4699), [anon_sym_SEMI] = ACTIONS(4701), [anon_sym_let] = ACTIONS(4699), @@ -263547,7 +264010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4701), [sym__consym] = ACTIONS(4701), }, - [2308] = { + [STATE(2308)] = { [sym_variable] = ACTIONS(4622), [anon_sym_SEMI] = ACTIONS(4624), [anon_sym_let] = ACTIONS(4622), @@ -263615,7 +264078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4624), [sym__consym] = ACTIONS(4624), }, - [2309] = { + [STATE(2309)] = { [sym__guards] = STATE(12427), [sym__simple_bind_match] = STATE(9088), [sym__bind_match] = STATE(9107), @@ -263683,7 +264146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4652), [sym__consym] = ACTIONS(4652), }, - [2310] = { + [STATE(2310)] = { [sym_variable] = ACTIONS(4703), [anon_sym_SEMI] = ACTIONS(4705), [anon_sym_let] = ACTIONS(4703), @@ -263751,7 +264214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4705), [sym__consym] = ACTIONS(4705), }, - [2311] = { + [STATE(2311)] = { [sym_variable] = ACTIONS(4707), [anon_sym_SEMI] = ACTIONS(4709), [anon_sym_let] = ACTIONS(4707), @@ -263819,7 +264282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4709), [sym__consym] = ACTIONS(4709), }, - [2312] = { + [STATE(2312)] = { [sym__type_parens] = STATE(7451), [sym__type_tuple] = STATE(7452), [sym__type_unboxed_tuple] = STATE(7453), @@ -263887,7 +264350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(2993), [sym__cond_splice] = ACTIONS(83), }, - [2313] = { + [STATE(2313)] = { [sym_variable] = ACTIONS(4713), [anon_sym_SEMI] = ACTIONS(4715), [anon_sym_let] = ACTIONS(4713), @@ -263955,7 +264418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4715), [sym__consym] = ACTIONS(4715), }, - [2314] = { + [STATE(2314)] = { [sym_variable] = ACTIONS(4717), [anon_sym_SEMI] = ACTIONS(4719), [anon_sym_let] = ACTIONS(4717), @@ -264023,7 +264486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4719), [sym__consym] = ACTIONS(4719), }, - [2315] = { + [STATE(2315)] = { [sym_variable] = ACTIONS(4721), [anon_sym_SEMI] = ACTIONS(4723), [anon_sym_let] = ACTIONS(4721), @@ -264091,7 +264554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4723), [sym__consym] = ACTIONS(4723), }, - [2316] = { + [STATE(2316)] = { [sym_variable] = ACTIONS(4725), [anon_sym_SEMI] = ACTIONS(4727), [anon_sym_let] = ACTIONS(4725), @@ -264159,7 +264622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4727), [sym__consym] = ACTIONS(4727), }, - [2317] = { + [STATE(2317)] = { [sym_variable] = ACTIONS(4729), [anon_sym_SEMI] = ACTIONS(4731), [anon_sym_let] = ACTIONS(4729), @@ -264227,7 +264690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4731), [sym__consym] = ACTIONS(4731), }, - [2318] = { + [STATE(2318)] = { [sym_variable] = ACTIONS(4733), [anon_sym_SEMI] = ACTIONS(4735), [anon_sym_let] = ACTIONS(4733), @@ -264295,7 +264758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4735), [sym__consym] = ACTIONS(4735), }, - [2319] = { + [STATE(2319)] = { [sym_variable] = ACTIONS(4737), [anon_sym_SEMI] = ACTIONS(4739), [anon_sym_let] = ACTIONS(4737), @@ -264363,7 +264826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4739), [sym__consym] = ACTIONS(4739), }, - [2320] = { + [STATE(2320)] = { [sym_variable] = ACTIONS(4741), [anon_sym_SEMI] = ACTIONS(4743), [anon_sym_let] = ACTIONS(4741), @@ -264431,7 +264894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4743), [sym__consym] = ACTIONS(4743), }, - [2321] = { + [STATE(2321)] = { [sym_variable] = ACTIONS(4745), [anon_sym_SEMI] = ACTIONS(4747), [anon_sym_let] = ACTIONS(4745), @@ -264499,7 +264962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4747), [sym__consym] = ACTIONS(4747), }, - [2322] = { + [STATE(2322)] = { [sym_variable] = ACTIONS(4749), [anon_sym_SEMI] = ACTIONS(4751), [anon_sym_let] = ACTIONS(4749), @@ -264567,7 +265030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4751), [sym__consym] = ACTIONS(4751), }, - [2323] = { + [STATE(2323)] = { [sym_variable] = ACTIONS(4753), [anon_sym_SEMI] = ACTIONS(4755), [anon_sym_let] = ACTIONS(4753), @@ -264635,7 +265098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4755), [sym__consym] = ACTIONS(4755), }, - [2324] = { + [STATE(2324)] = { [sym_variable] = ACTIONS(4707), [anon_sym_SEMI] = ACTIONS(4709), [anon_sym_let] = ACTIONS(4707), @@ -264703,7 +265166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4709), [sym__consym] = ACTIONS(4709), }, - [2325] = { + [STATE(2325)] = { [sym_variable] = ACTIONS(4757), [anon_sym_SEMI] = ACTIONS(4759), [anon_sym_let] = ACTIONS(4757), @@ -264771,7 +265234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4759), [sym__consym] = ACTIONS(4759), }, - [2326] = { + [STATE(2326)] = { [sym_variable] = ACTIONS(4761), [anon_sym_SEMI] = ACTIONS(4763), [anon_sym_let] = ACTIONS(4761), @@ -264839,7 +265302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4763), [sym__consym] = ACTIONS(4763), }, - [2327] = { + [STATE(2327)] = { [sym_variable] = ACTIONS(4707), [anon_sym_SEMI] = ACTIONS(4709), [anon_sym_let] = ACTIONS(4707), @@ -264907,7 +265370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4709), [sym__consym] = ACTIONS(4709), }, - [2328] = { + [STATE(2328)] = { [sym_variable] = ACTIONS(4765), [anon_sym_SEMI] = ACTIONS(4767), [anon_sym_let] = ACTIONS(4765), @@ -264975,7 +265438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4767), [sym__consym] = ACTIONS(4767), }, - [2329] = { + [STATE(2329)] = { [sym_variable] = ACTIONS(4769), [anon_sym_SEMI] = ACTIONS(4771), [anon_sym_let] = ACTIONS(4769), @@ -265043,7 +265506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4771), [sym__consym] = ACTIONS(4771), }, - [2330] = { + [STATE(2330)] = { [sym_variable] = ACTIONS(4773), [anon_sym_SEMI] = ACTIONS(4775), [anon_sym_let] = ACTIONS(4773), @@ -265111,7 +265574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4775), [sym__consym] = ACTIONS(4775), }, - [2331] = { + [STATE(2331)] = { [sym__type_wildcard] = STATE(7997), [sym__forall_keyword] = STATE(8277), [sym__forall_body] = STATE(12243), @@ -265179,7 +265642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(3327), [sym__cond_infix] = ACTIONS(3329), }, - [2332] = { + [STATE(2332)] = { [sym_variable] = ACTIONS(4691), [anon_sym_SEMI] = ACTIONS(4693), [anon_sym_let] = ACTIONS(4691), @@ -265247,7 +265710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4693), [sym__consym] = ACTIONS(4693), }, - [2333] = { + [STATE(2333)] = { [sym_variable] = ACTIONS(4779), [anon_sym_SEMI] = ACTIONS(4781), [anon_sym_let] = ACTIONS(4783), @@ -265315,7 +265778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4781), [sym__consym] = ACTIONS(4781), }, - [2334] = { + [STATE(2334)] = { [sym_variable] = ACTIONS(4787), [anon_sym_SEMI] = ACTIONS(4789), [anon_sym_let] = ACTIONS(4787), @@ -265383,7 +265846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4789), [sym__consym] = ACTIONS(4789), }, - [2335] = { + [STATE(2335)] = { [sym_variable] = ACTIONS(4791), [anon_sym_SEMI] = ACTIONS(4793), [anon_sym_let] = ACTIONS(4791), @@ -265451,7 +265914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4793), [sym__consym] = ACTIONS(4793), }, - [2336] = { + [STATE(2336)] = { [sym_variable] = ACTIONS(4795), [anon_sym_SEMI] = ACTIONS(4797), [anon_sym_let] = ACTIONS(4795), @@ -265519,7 +265982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4797), [sym__consym] = ACTIONS(4797), }, - [2337] = { + [STATE(2337)] = { [sym_variable] = ACTIONS(4707), [anon_sym_SEMI] = ACTIONS(4709), [anon_sym_let] = ACTIONS(4707), @@ -265587,7 +266050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4709), [sym__consym] = ACTIONS(4709), }, - [2338] = { + [STATE(2338)] = { [sym__type_wildcard] = STATE(7997), [sym__forall_keyword] = STATE(8277), [sym__forall_body] = STATE(12243), @@ -265655,7 +266118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(3327), [sym__cond_infix] = ACTIONS(3329), }, - [2339] = { + [STATE(2339)] = { [sym__type_wildcard] = STATE(7997), [sym__forall_keyword] = STATE(8277), [sym__forall_body] = STATE(12243), @@ -265723,7 +266186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_context] = ACTIONS(3327), [sym__cond_infix] = ACTIONS(3329), }, - [2340] = { + [STATE(2340)] = { [sym__type_parens] = STATE(7451), [sym__type_tuple] = STATE(7452), [sym__type_unboxed_tuple] = STATE(7453), @@ -265791,7 +266254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cond_quote_start] = ACTIONS(2993), [sym__cond_splice] = ACTIONS(83), }, - [2341] = { + [STATE(2341)] = { [sym_variable] = ACTIONS(4799), [anon_sym_SEMI] = ACTIONS(4801), [anon_sym_let] = ACTIONS(4799), @@ -265859,7 +266322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4801), [sym__consym] = ACTIONS(4801), }, - [2342] = { + [STATE(2342)] = { [sym_variable] = ACTIONS(4803), [anon_sym_SEMI] = ACTIONS(4805), [anon_sym_let] = ACTIONS(4803), @@ -265927,7 +266390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4805), [sym__consym] = ACTIONS(4805), }, - [2343] = { + [STATE(2343)] = { [sym_variable] = ACTIONS(4807), [anon_sym_SEMI] = ACTIONS(4809), [anon_sym_let] = ACTIONS(4807), @@ -265995,7 +266458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4809), [sym__consym] = ACTIONS(4809), }, - [2344] = { + [STATE(2344)] = { [sym_variable] = ACTIONS(4811), [anon_sym_SEMI] = ACTIONS(4813), [anon_sym_let] = ACTIONS(4811), @@ -266063,7 +266526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4813), [sym__consym] = ACTIONS(4813), }, - [2345] = { + [STATE(2345)] = { [sym_variable] = ACTIONS(4815), [anon_sym_SEMI] = ACTIONS(4817), [anon_sym_let] = ACTIONS(4815), @@ -266131,7 +266594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4817), [sym__consym] = ACTIONS(4817), }, - [2346] = { + [STATE(2346)] = { [sym_variable] = ACTIONS(4819), [anon_sym_SEMI] = ACTIONS(4821), [anon_sym_let] = ACTIONS(4819), @@ -266199,7 +266662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4821), [sym__consym] = ACTIONS(4821), }, - [2347] = { + [STATE(2347)] = { [sym_variable] = ACTIONS(4622), [anon_sym_SEMI] = ACTIONS(4624), [anon_sym_let] = ACTIONS(4622), @@ -266267,7 +266730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4624), [sym__consym] = ACTIONS(4624), }, - [2348] = { + [STATE(2348)] = { [sym_variable] = ACTIONS(4783), [anon_sym_SEMI] = ACTIONS(4781), [anon_sym_let] = ACTIONS(4783), @@ -266335,7 +266798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4781), [sym__consym] = ACTIONS(4781), }, - [2349] = { + [STATE(2349)] = { [sym_variable] = ACTIONS(4823), [anon_sym_SEMI] = ACTIONS(4825), [anon_sym_let] = ACTIONS(4823), @@ -266403,7 +266866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4825), [sym__consym] = ACTIONS(4825), }, - [2350] = { + [STATE(2350)] = { [sym_variable] = ACTIONS(4827), [anon_sym_SEMI] = ACTIONS(4829), [anon_sym_let] = ACTIONS(4827), @@ -266471,7 +266934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4829), [sym__consym] = ACTIONS(4829), }, - [2351] = { + [STATE(2351)] = { [sym_variable] = ACTIONS(4831), [anon_sym_SEMI] = ACTIONS(4833), [anon_sym_let] = ACTIONS(4831), @@ -266539,7 +267002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4833), [sym__consym] = ACTIONS(4833), }, - [2352] = { + [STATE(2352)] = { [sym_variable] = ACTIONS(4835), [anon_sym_SEMI] = ACTIONS(4837), [anon_sym_let] = ACTIONS(4835), @@ -266607,7 +267070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4837), [sym__consym] = ACTIONS(4837), }, - [2353] = { + [STATE(2353)] = { [sym_variable] = ACTIONS(4839), [anon_sym_SEMI] = ACTIONS(4841), [anon_sym_let] = ACTIONS(4839), @@ -266675,7 +267138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4841), [sym__consym] = ACTIONS(4841), }, - [2354] = { + [STATE(2354)] = { [sym_variable] = ACTIONS(4683), [anon_sym_SEMI] = ACTIONS(4685), [anon_sym_let] = ACTIONS(4683), @@ -266743,7 +267206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4685), [sym__consym] = ACTIONS(4685), }, - [2355] = { + [STATE(2355)] = { [sym_variable] = ACTIONS(4843), [anon_sym_SEMI] = ACTIONS(4845), [anon_sym_let] = ACTIONS(4843), @@ -266811,7 +267274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4845), [sym__consym] = ACTIONS(4845), }, - [2356] = { + [STATE(2356)] = { [sym_variable] = ACTIONS(4847), [anon_sym_SEMI] = ACTIONS(4849), [anon_sym_let] = ACTIONS(4847), @@ -266879,7 +267342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4849), [sym__consym] = ACTIONS(4849), }, - [2357] = { + [STATE(2357)] = { [sym_variable] = ACTIONS(4851), [anon_sym_SEMI] = ACTIONS(4853), [anon_sym_let] = ACTIONS(4851), @@ -266947,7 +267410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4853), [sym__consym] = ACTIONS(4853), }, - [2358] = { + [STATE(2358)] = { [sym_variable] = ACTIONS(4855), [anon_sym_SEMI] = ACTIONS(4857), [anon_sym_let] = ACTIONS(4855), @@ -267015,7 +267478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4857), [sym__consym] = ACTIONS(4857), }, - [2359] = { + [STATE(2359)] = { [sym_variable] = ACTIONS(4859), [anon_sym_SEMI] = ACTIONS(4861), [anon_sym_let] = ACTIONS(4859), @@ -267083,7 +267546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4861), [sym__consym] = ACTIONS(4861), }, - [2360] = { + [STATE(2360)] = { [sym__qual_dot] = STATE(10878), [sym__tight_dot] = STATE(10878), [sym_variable] = ACTIONS(4606), @@ -267150,7 +267613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4608), [sym__consym] = ACTIONS(4608), }, - [2361] = { + [STATE(2361)] = { [sym__qual_dot] = STATE(10878), [sym__tight_dot] = STATE(10878), [sym_variable] = ACTIONS(4626), @@ -267217,7 +267680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4628), [sym__consym] = ACTIONS(4628), }, - [2362] = { + [STATE(2362)] = { [sym__qual_dot] = STATE(10878), [sym__tight_dot] = STATE(10878), [sym_variable] = ACTIONS(4614), @@ -267284,7 +267747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4616), [sym__consym] = ACTIONS(4616), }, - [2363] = { + [STATE(2363)] = { [sym__fun_arrow] = STATE(1719), [sym_modifier] = STATE(9947), [sym__linear_fun_arrow] = STATE(1720), @@ -267351,7 +267814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4566), [sym__consym] = ACTIONS(4566), }, - [2364] = { + [STATE(2364)] = { [sym__fun_arrow] = STATE(1719), [sym_modifier] = STATE(9947), [sym__linear_fun_arrow] = STATE(1720), @@ -267418,7 +267881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4594), [sym__consym] = ACTIONS(4594), }, - [2365] = { + [STATE(2365)] = { [sym__fun_arrow] = STATE(1719), [sym_modifier] = STATE(9947), [sym__linear_fun_arrow] = STATE(1720), @@ -267485,7 +267948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4586), [sym__consym] = ACTIONS(4586), }, - [2366] = { + [STATE(2366)] = { [sym__fun_arrow] = STATE(1719), [sym_modifier] = STATE(9947), [sym__linear_fun_arrow] = STATE(1720), @@ -267552,7 +268015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4582), [sym__consym] = ACTIONS(4582), }, - [2367] = { + [STATE(2367)] = { [sym__qual_dot] = STATE(8571), [sym__tight_dot] = STATE(8571), [sym_variable] = ACTIONS(4622), @@ -267619,7 +268082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4624), [sym__consym] = ACTIONS(4624), }, - [2368] = { + [STATE(2368)] = { [sym__qual_dot] = STATE(10878), [sym__tight_dot] = STATE(10878), [sym_variable] = ACTIONS(4622), @@ -267686,7 +268149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4624), [sym__consym] = ACTIONS(4624), }, - [2369] = { + [STATE(2369)] = { [sym__qual_dot] = STATE(10878), [sym__tight_dot] = STATE(10878), [sym_variable] = ACTIONS(4638), @@ -267753,7 +268216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4640), [sym__consym] = ACTIONS(4640), }, - [2370] = { + [STATE(2370)] = { [sym__fun_arrow] = STATE(1719), [sym_modifier] = STATE(9947), [sym__linear_fun_arrow] = STATE(1720), @@ -267820,7 +268283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4590), [sym__consym] = ACTIONS(4590), }, - [2371] = { + [STATE(2371)] = { [sym__fun_arrow] = STATE(1719), [sym_modifier] = STATE(9947), [sym__linear_fun_arrow] = STATE(1720), @@ -267887,7 +268350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4586), [sym__consym] = ACTIONS(4586), }, - [2372] = { + [STATE(2372)] = { [sym__qual_dot] = STATE(8571), [sym__tight_dot] = STATE(8571), [sym_variable] = ACTIONS(4606), @@ -267954,7 +268417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4608), [sym__consym] = ACTIONS(4608), }, - [2373] = { + [STATE(2373)] = { [sym__fun_arrow] = STATE(1719), [sym_modifier] = STATE(9947), [sym__linear_fun_arrow] = STATE(1720), @@ -268021,7 +268484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4590), [sym__consym] = ACTIONS(4590), }, - [2374] = { + [STATE(2374)] = { [sym__fun_arrow] = STATE(1719), [sym_modifier] = STATE(9947), [sym__linear_fun_arrow] = STATE(1720), @@ -268088,7 +268551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4598), [sym__consym] = ACTIONS(4598), }, - [2375] = { + [STATE(2375)] = { [sym__qual_dot] = STATE(8571), [sym__tight_dot] = STATE(8571), [sym_variable] = ACTIONS(4614), @@ -268155,7 +268618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4616), [sym__consym] = ACTIONS(4616), }, - [2376] = { + [STATE(2376)] = { [sym__fun_arrow] = STATE(1719), [sym_modifier] = STATE(9947), [sym__linear_fun_arrow] = STATE(1720), @@ -268222,7 +268685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__varsym] = ACTIONS(4602), [sym__consym] = ACTIONS(4602), }, - [2377] = { + [STATE(2377)] = { [sym__qual_dot] = STATE(8571), [sym__tight_dot] = STATE(8571), [sym_variable] = ACTIONS(4626), @@ -677084,7 +677547,7 @@ void tree_sitter_haskell_external_scanner_deserialize(void *, const char *, unsi TS_PUBLIC const TSLanguage *tree_sitter_haskell(void) { static const TSLanguage language = { - .version = LANGUAGE_VERSION, + .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -677092,6 +677555,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_haskell(void) { .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, .production_id_count = PRODUCTION_ID_COUNT, + .supertype_count = SUPERTYPE_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .parse_table = &ts_parse_table[0][0], @@ -677102,11 +677566,14 @@ TS_PUBLIC const TSLanguage *tree_sitter_haskell(void) { .field_names = ts_field_names, .field_map_slices = ts_field_map_slices, .field_map_entries = ts_field_map_entries, + .supertype_map_slices = ts_supertype_map_slices, + .supertype_map_entries = ts_supertype_map_entries, + .supertype_symbols = ts_supertype_symbols, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, + .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_variable, @@ -677120,6 +677587,13 @@ TS_PUBLIC const TSLanguage *tree_sitter_haskell(void) { tree_sitter_haskell_external_scanner_deserialize, }, .primary_state_ids = ts_primary_state_ids, + .name = "haskell", + .max_reserved_word_set_size = 0, + .metadata = { + .major_version = 0, + .minor_version = 23, + .patch_version = 1, + }, }; return &language; } diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index 15a3b233..a17a574f 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -278,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 799f599b..858107de 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -18,6 +18,11 @@ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; #endif typedef struct { @@ -26,10 +31,11 @@ typedef struct { bool inherited; } TSFieldMapEntry; +// Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; -} TSFieldMapSlice; +} TSMapSlice; typedef struct { bool visible; @@ -79,6 +85,12 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + typedef union { TSParseAction action; struct { @@ -93,7 +105,7 @@ typedef struct { } TSCharacterRange; struct TSLanguage { - uint32_t version; + uint32_t abi_version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; @@ -109,13 +121,13 @@ struct TSLanguage { const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; - const TSFieldMapSlice *field_map_slices; + const TSMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; + const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -129,15 +141,23 @@ struct TSLanguage { void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; + uint32_t supertype_count; + const TSSymbol *supertype_symbols; + const TSMapSlice *supertype_map_slices; + const TSSymbol *supertype_map_entries; + TSLanguageMetadata metadata; }; -static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { +static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { uint32_t index = 0; uint32_t size = len - index; while (size > 1) { uint32_t half_size = size / 2; uint32_t mid_index = index + half_size; - TSCharacterRange *range = &ranges[mid_index]; + const TSCharacterRange *range = &ranges[mid_index]; if (lookahead >= range->start && lookahead <= range->end) { return true; } else if (lookahead > range->end) { @@ -145,7 +165,7 @@ static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t } size -= half_size; } - TSCharacterRange *range = &ranges[index]; + const TSCharacterRange *range = &ranges[index]; return (lookahead >= range->start && lookahead <= range->end); } diff --git a/test/corpus/varsym.txt b/test/corpus/varsym.txt index cb35d16c..ba301711 100644 --- a/test/corpus/varsym.txt +++ b/test/corpus/varsym.txt @@ -102,6 +102,7 @@ f = a |> a ================================================================================ varsym: error: carrow +:skip ================================================================================ f = a => a